Class: Increase::Models::Transaction::Source::InboundWireReversal
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::Transaction::Source::InboundWireReversal
- Defined in:
- lib/increase/models/transaction.rb
Overview
Instance Attribute Summary collapse
-
#amount ⇒ Integer
The amount that was reversed in USD cents.
-
#created_at ⇒ Time
The [ISO 8601](en.wikipedia.org/wiki/ISO_8601) date and time at which the reversal was created.
-
#debtor_routing_number ⇒ String?
The debtor’s routing number.
-
#description ⇒ String
The description on the reversal message from Fedwire, set by the reversing bank.
-
#input_cycle_date ⇒ Date
The Fedwire cycle date for the wire reversal.
-
#input_message_accountability_data ⇒ String
The Fedwire transaction identifier.
-
#input_sequence_number ⇒ String
The Fedwire sequence number.
-
#input_source ⇒ String
The Fedwire input source identifier.
-
#instruction_identification ⇒ String?
The sending bank’s identifier for the reversal.
-
#return_reason_additional_information ⇒ String?
Additional information about the reason for the reversal.
-
#return_reason_code ⇒ String?
A code provided by the sending bank giving a reason for the reversal.
-
#return_reason_code_description ⇒ String?
An Increase-generated description of the ‘return_reason_code`.
-
#transaction_id ⇒ String
The ID for the Transaction associated with the transfer reversal.
-
#wire_transfer_id ⇒ String
The ID for the Wire Transfer that is being reversed.
Method Summary
Methods inherited from Internal::Type::BaseModel
#==, ==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, #initialize, 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
This class inherits a constructor from Increase::Internal::Type::BaseModel
Instance Attribute Details
#amount ⇒ Integer
The amount that was reversed in USD cents.
6242 |
# File 'lib/increase/models/transaction.rb', line 6242 required :amount, Integer |
#created_at ⇒ Time
The [ISO 8601](en.wikipedia.org/wiki/ISO_8601) date and time at which the reversal was created.
6249 |
# File 'lib/increase/models/transaction.rb', line 6249 required :created_at, Time |
#debtor_routing_number ⇒ String?
The debtor’s routing number.
6255 |
# File 'lib/increase/models/transaction.rb', line 6255 required :debtor_routing_number, String, nil?: true |
#description ⇒ String
The description on the reversal message from Fedwire, set by the reversing bank.
6261 |
# File 'lib/increase/models/transaction.rb', line 6261 required :description, String |
#input_cycle_date ⇒ Date
The Fedwire cycle date for the wire reversal. The “Fedwire day” begins at 9:00 PM Eastern Time on the evening before the ‘cycle date`.
6268 |
# File 'lib/increase/models/transaction.rb', line 6268 required :input_cycle_date, Date |
#input_message_accountability_data ⇒ String
The Fedwire transaction identifier.
6274 |
# File 'lib/increase/models/transaction.rb', line 6274 required :input_message_accountability_data, String |
#input_sequence_number ⇒ String
The Fedwire sequence number.
6280 |
# File 'lib/increase/models/transaction.rb', line 6280 required :input_sequence_number, String |
#input_source ⇒ String
The Fedwire input source identifier.
6286 |
# File 'lib/increase/models/transaction.rb', line 6286 required :input_source, String |
#instruction_identification ⇒ String?
The sending bank’s identifier for the reversal.
6292 |
# File 'lib/increase/models/transaction.rb', line 6292 required :instruction_identification, String, nil?: true |
#return_reason_additional_information ⇒ String?
Additional information about the reason for the reversal.
6298 |
# File 'lib/increase/models/transaction.rb', line 6298 required :return_reason_additional_information, String, nil?: true |
#return_reason_code ⇒ String?
A code provided by the sending bank giving a reason for the reversal. It will generally be one of the codes defined in the ISO20022 ‘ExternalReturnReason1Code` code set, but this is not enforced by the network.
6306 |
# File 'lib/increase/models/transaction.rb', line 6306 required :return_reason_code, String, nil?: true |
#return_reason_code_description ⇒ String?
An Increase-generated description of the ‘return_reason_code`.
6312 |
# File 'lib/increase/models/transaction.rb', line 6312 required :return_reason_code_description, String, nil?: true |
#transaction_id ⇒ String
The ID for the Transaction associated with the transfer reversal.
6318 |
# File 'lib/increase/models/transaction.rb', line 6318 required :transaction_id, String |
#wire_transfer_id ⇒ String
The ID for the Wire Transfer that is being reversed.
6324 |
# File 'lib/increase/models/transaction.rb', line 6324 required :wire_transfer_id, String |