Class: Lithic::Models::Payment::MethodAttributes::WireMethodAttributes
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::Payment::MethodAttributes::WireMethodAttributes
- Defined in:
- lib/lithic/models/payment.rb
Defined Under Namespace
Modules: WireNetwork
Instance Attribute Summary collapse
- #creditor ⇒ Lithic::Models::WirePartyDetails?
- #debtor ⇒ Lithic::Models::WirePartyDetails?
-
#message_id ⇒ String?
Point to point reference identifier, as assigned by the instructing party, used for tracking the message through the Fedwire system.
-
#remittance_information ⇒ String?
Payment details or invoice reference.
-
#wire_message_type ⇒ String?
Type of wire message.
-
#wire_network ⇒ Symbol, Lithic::Models::Payment::MethodAttributes::WireMethodAttributes::WireNetwork
Type of wire transfer.
Instance Method Summary collapse
-
#initialize(wire_message_type:, wire_network:, creditor: nil, debtor: nil, message_id: nil, remittance_information: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see WireMethodAttributes 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(wire_message_type:, wire_network:, creditor: nil, debtor: nil, message_id: nil, remittance_information: nil) ⇒ Object
Some parameter documentations has been truncated, see Lithic::Models::Payment::MethodAttributes::WireMethodAttributes for more details.
|
|
# File 'lib/lithic/models/payment.rb', line 532
|
Instance Attribute Details
#creditor ⇒ Lithic::Models::WirePartyDetails?
512 |
# File 'lib/lithic/models/payment.rb', line 512 optional :creditor, -> { Lithic::WirePartyDetails } |
#debtor ⇒ Lithic::Models::WirePartyDetails?
517 |
# File 'lib/lithic/models/payment.rb', line 517 optional :debtor, -> { Lithic::WirePartyDetails } |
#message_id ⇒ String?
Point to point reference identifier, as assigned by the instructing party, used for tracking the message through the Fedwire system
524 |
# File 'lib/lithic/models/payment.rb', line 524 optional :message_id, String, nil?: true |
#remittance_information ⇒ String?
Payment details or invoice reference
530 |
# File 'lib/lithic/models/payment.rb', line 530 optional :remittance_information, String, nil?: true |
#wire_message_type ⇒ String?
Type of wire message
501 |
# File 'lib/lithic/models/payment.rb', line 501 required :wire_message_type, String, nil?: true |
#wire_network ⇒ Symbol, Lithic::Models::Payment::MethodAttributes::WireMethodAttributes::WireNetwork
Type of wire transfer
507 |
# File 'lib/lithic/models/payment.rb', line 507 required :wire_network, enum: -> { Lithic::Payment::MethodAttributes::WireMethodAttributes::WireNetwork } |