Class: Increase::Models::InboundFednowTransfer
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::InboundFednowTransfer
- Defined in:
- lib/increase/models/inbound_fednow_transfer.rb
Overview
Defined Under Namespace
Modules: Currency, Status, Type Classes: Confirmation, Decline
Instance Attribute Summary collapse
-
#account_id ⇒ String
The Account to which the transfer was sent.
-
#account_number_id ⇒ String
The identifier of the Account Number to which this transfer was sent.
-
#amount ⇒ Integer
The amount in USD cents.
-
#confirmation ⇒ Increase::Models::InboundFednowTransfer::Confirmation?
If your transfer is confirmed, this will contain details of the confirmation.
-
#created_at ⇒ Time
The [ISO 8601](en.wikipedia.org/wiki/ISO_8601) date and time at which the transfer was created.
-
#creditor_name ⇒ String
The name the sender of the transfer specified as the recipient of the transfer.
-
#currency ⇒ Symbol, Increase::Models::InboundFednowTransfer::Currency
The [ISO 4217](en.wikipedia.org/wiki/ISO_4217) code of the transfer’s currency.
-
#debtor_account_number ⇒ String
The account number of the account that sent the transfer.
-
#debtor_name ⇒ String
The name provided by the sender of the transfer.
-
#debtor_routing_number ⇒ String
The routing number of the account that sent the transfer.
-
#decline ⇒ Increase::Models::InboundFednowTransfer::Decline?
If your transfer is declined, this will contain details of the decline.
-
#id ⇒ String
The inbound FedNow transfer’s identifier.
-
#status ⇒ Symbol, Increase::Models::InboundFednowTransfer::Status
The lifecycle status of the transfer.
-
#transaction_id ⇒ String?
The identifier of the Transaction object created when the transfer was confirmed.
-
#type ⇒ Symbol, Increase::Models::InboundFednowTransfer::Type
A constant representing the object’s type.
-
#unstructured_remittance_information ⇒ String?
Additional information included with the transfer.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(transfer_id: ) ⇒ Object
constructor
If your transfer is confirmed, this will contain details of the confirmation.
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(transfer_id: ) ⇒ Object
If your transfer is confirmed, this will contain details of the confirmation.
|
|
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 107
|
Instance Attribute Details
#account_id ⇒ String
The Account to which the transfer was sent.
17 |
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 17 required :account_id, String |
#account_number_id ⇒ String
The identifier of the Account Number to which this transfer was sent.
23 |
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 23 required :account_number_id, String |
#amount ⇒ Integer
The amount in USD cents.
29 |
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 29 required :amount, Integer |
#confirmation ⇒ Increase::Models::InboundFednowTransfer::Confirmation?
If your transfer is confirmed, this will contain details of the confirmation.
35 |
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 35 required :confirmation, -> { Increase::InboundFednowTransfer::Confirmation }, nil?: true |
#created_at ⇒ Time
The [ISO 8601](en.wikipedia.org/wiki/ISO_8601) date and time at which the transfer was created.
42 |
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 42 required :created_at, Time |
#creditor_name ⇒ String
The name the sender of the transfer specified as the recipient of the transfer.
48 |
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 48 required :creditor_name, String |
#currency ⇒ Symbol, Increase::Models::InboundFednowTransfer::Currency
The [ISO 4217](en.wikipedia.org/wiki/ISO_4217) code of the transfer’s currency. This will always be “USD” for a FedNow transfer.
55 |
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 55 required :currency, enum: -> { Increase::InboundFednowTransfer::Currency } |
#debtor_account_number ⇒ String
The account number of the account that sent the transfer.
61 |
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 61 required :debtor_account_number, String |
#debtor_name ⇒ String
The name provided by the sender of the transfer.
67 |
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 67 required :debtor_name, String |
#debtor_routing_number ⇒ String
The routing number of the account that sent the transfer.
73 |
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 73 required :debtor_routing_number, String |
#decline ⇒ Increase::Models::InboundFednowTransfer::Decline?
If your transfer is declined, this will contain details of the decline.
79 |
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 79 required :decline, -> { Increase::InboundFednowTransfer::Decline }, nil?: true |
#id ⇒ String
The inbound FedNow transfer’s identifier.
11 |
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 11 required :id, String |
#status ⇒ Symbol, Increase::Models::InboundFednowTransfer::Status
The lifecycle status of the transfer.
85 |
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 85 required :status, enum: -> { Increase::InboundFednowTransfer::Status } |
#transaction_id ⇒ String?
The identifier of the Transaction object created when the transfer was confirmed.
92 |
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 92 required :transaction_id, String, nil?: true |
#type ⇒ Symbol, Increase::Models::InboundFednowTransfer::Type
A constant representing the object’s type. For this resource it will always be ‘inbound_fednow_transfer`.
99 |
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 99 required :type, enum: -> { Increase::InboundFednowTransfer::Type } |
#unstructured_remittance_information ⇒ String?
Additional information included with the transfer.
105 |
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 105 required :unstructured_remittance_information, String, nil?: true |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/increase/models/inbound_fednow_transfer.rb', line 170
|