@@ -289,7 +289,13 @@ class Event < Lithic::Internal::Type::BaseModel
289289 optional :detailed_results ,
290290 -> { Lithic ::Internal ::Type ::ArrayOf [ enum : Lithic ::Payment ::Event ::DetailedResult ] }
291291
292- # @!method initialize(token:, amount:, created:, result:, type:, detailed_results: nil)
292+ # @!attribute external_id
293+ # Payment event external ID, for example, ACH trace number.
294+ #
295+ # @return [String, nil]
296+ optional :external_id , String , nil? : true
297+
298+ # @!method initialize(token:, amount:, created:, result:, type:, detailed_results: nil, external_id: nil)
293299 # Some parameter documentations has been truncated, see
294300 # {Lithic::Models::Payment::Event} for more details.
295301 #
@@ -306,6 +312,8 @@ class Event < Lithic::Internal::Type::BaseModel
306312 # @param type [Symbol, Lithic::Models::Payment::Event::Type] Event types:
307313 #
308314 # @param detailed_results [Array<Symbol, Lithic::Models::Payment::Event::DetailedResult>] More detailed reasons for the event
315+ #
316+ # @param external_id [String, nil] Payment event external ID, for example, ACH trace number.
309317
310318 # APPROVED financial events were successful while DECLINED financial events were
311319 # declined by user, Lithic, or the network.
0 commit comments