Class: Lithic::Models::Payment::MethodAttributes::ACHMethodAttributes
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::Payment::MethodAttributes::ACHMethodAttributes
- Defined in:
- lib/lithic/models/payment.rb
Defined Under Namespace
Modules: SecCode
Instance Attribute Summary collapse
-
#ach_hold_period ⇒ Integer?
Number of days the ACH transaction is on hold.
-
#addenda ⇒ String?
Addenda information.
-
#company_id ⇒ String?
Company ID for the ACH transaction.
-
#override_company_name ⇒ String?
Value to override the configured company name with.
-
#receipt_routing_number ⇒ String?
Receipt routing number.
-
#retries ⇒ Integer?
Number of retries attempted.
-
#return_reason_code ⇒ String?
Return reason code if the transaction was returned.
-
#sec_code ⇒ Symbol, Lithic::Models::Payment::MethodAttributes::ACHMethodAttributes::SecCode
SEC code for ACH transaction.
-
#trace_numbers ⇒ Array<String>?
Trace numbers for the ACH transaction.
Instance Method Summary collapse
-
#initialize(sec_code:, ach_hold_period: nil, addenda: nil, company_id: nil, override_company_name: nil, receipt_routing_number: nil, retries: nil, return_reason_code: nil, trace_numbers: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see ACHMethodAttributes for more details.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(sec_code:, ach_hold_period: nil, addenda: nil, company_id: nil, override_company_name: nil, receipt_routing_number: nil, retries: nil, return_reason_code: nil, trace_numbers: nil) ⇒ Object
Some parameter documentations has been truncated, see Lithic::Models::Payment::MethodAttributes::ACHMethodAttributes for more details.
|
|
# File 'lib/lithic/models/payment.rb', line 548
|
Instance Attribute Details
#ach_hold_period ⇒ Integer?
Number of days the ACH transaction is on hold
503 |
# File 'lib/lithic/models/payment.rb', line 503 optional :ach_hold_period, Integer, nil?: true |
#addenda ⇒ String?
Addenda information
509 |
# File 'lib/lithic/models/payment.rb', line 509 optional :addenda, String, nil?: true |
#company_id ⇒ String?
Company ID for the ACH transaction
515 |
# File 'lib/lithic/models/payment.rb', line 515 optional :company_id, String, nil?: true |
#override_company_name ⇒ String?
Value to override the configured company name with. Can only be used if allowed to override
522 |
# File 'lib/lithic/models/payment.rb', line 522 optional :override_company_name, String, nil?: true |
#receipt_routing_number ⇒ String?
Receipt routing number
528 |
# File 'lib/lithic/models/payment.rb', line 528 optional :receipt_routing_number, String, nil?: true |
#retries ⇒ Integer?
Number of retries attempted
534 |
# File 'lib/lithic/models/payment.rb', line 534 optional :retries, Integer, nil?: true |
#return_reason_code ⇒ String?
Return reason code if the transaction was returned
540 |
# File 'lib/lithic/models/payment.rb', line 540 optional :return_reason_code, String, nil?: true |
#sec_code ⇒ Symbol, Lithic::Models::Payment::MethodAttributes::ACHMethodAttributes::SecCode
SEC code for ACH transaction
497 |
# File 'lib/lithic/models/payment.rb', line 497 required :sec_code, enum: -> { Lithic::Payment::MethodAttributes::ACHMethodAttributes::SecCode } |