Class: Increase::Models::InboundWireTransfer
- Defined in:
- lib/increase/models/inbound_wire_transfer.rb
Instance Attribute Summary collapse
-
#account_id ⇒ String
The Account to which the transfer belongs.
-
#account_number_id ⇒ String
The identifier of the Account Number to which this transfer was sent.
-
#amount ⇒ Integer
The amount in USD cents.
-
#beneficiary_address_line1 ⇒ String
A free-form address field set by the sender.
-
#beneficiary_address_line2 ⇒ String
A free-form address field set by the sender.
-
#beneficiary_address_line3 ⇒ String
A free-form address field set by the sender.
-
#beneficiary_name ⇒ String
A name set by the sender.
-
#beneficiary_reference ⇒ String
A free-form reference string set by the sender, to help identify the transfer.
-
#description ⇒ String
An Increase-constructed description of the transfer.
-
#id ⇒ String
The inbound wire transfer's identifier.
-
#input_message_accountability_data ⇒ String
A unique identifier available to the originating and receiving banks, commonly abbreviated as IMAD.
-
#originator_address_line1 ⇒ String
The address of the wire originator, set by the sending bank.
-
#originator_address_line2 ⇒ String
The address of the wire originator, set by the sending bank.
-
#originator_address_line3 ⇒ String
The address of the wire originator, set by the sending bank.
-
#originator_name ⇒ String
The originator of the wire, set by the sending bank.
-
#originator_routing_number ⇒ String
The American Banking Association (ABA) routing number of the bank originating the transfer.
-
#originator_to_beneficiary_information ⇒ String
An Increase-created concatenation of the Originator-to-Beneficiary lines.
-
#originator_to_beneficiary_information_line1 ⇒ String
A free-form message set by the wire originator.
-
#originator_to_beneficiary_information_line2 ⇒ String
A free-form message set by the wire originator.
-
#originator_to_beneficiary_information_line3 ⇒ String
A free-form message set by the wire originator.
-
#originator_to_beneficiary_information_line4 ⇒ String
A free-form message set by the wire originator.
-
#sender_reference ⇒ String
The sending bank's reference number for the wire transfer.
-
#status ⇒ Symbol
The status of the transfer.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#account_id ⇒ String
The Account to which the transfer belongs.
14 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 14 required :account_id, String |
#account_number_id ⇒ String
The identifier of the Account Number to which this transfer was sent.
19 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 19 required :account_number_id, String |
#amount ⇒ Integer
The amount in USD cents.
24 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 24 required :amount, Integer |
#beneficiary_address_line1 ⇒ String
A free-form address field set by the sender.
29 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 29 required :beneficiary_address_line1, String |
#beneficiary_address_line2 ⇒ String
A free-form address field set by the sender.
34 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 34 required :beneficiary_address_line2, String |
#beneficiary_address_line3 ⇒ String
A free-form address field set by the sender.
39 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 39 required :beneficiary_address_line3, String |
#beneficiary_name ⇒ String
A name set by the sender.
44 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 44 required :beneficiary_name, String |
#beneficiary_reference ⇒ String
A free-form reference string set by the sender, to help identify the transfer.
49 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 49 required :beneficiary_reference, String |
#description ⇒ String
An Increase-constructed description of the transfer.
54 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 54 required :description, String |
#id ⇒ String
The inbound wire transfer's identifier.
9 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 9 required :id, String |
#input_message_accountability_data ⇒ String
A unique identifier available to the originating and receiving banks, commonly abbreviated as IMAD. It is created when the wire is submitted to the Fedwire service and is helpful when debugging wires with the originating bank.
59 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 59 required :input_message_accountability_data, String |
#originator_address_line1 ⇒ String
The address of the wire originator, set by the sending bank.
64 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 64 required :originator_address_line1, String |
#originator_address_line2 ⇒ String
The address of the wire originator, set by the sending bank.
69 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 69 required :originator_address_line2, String |
#originator_address_line3 ⇒ String
The address of the wire originator, set by the sending bank.
74 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 74 required :originator_address_line3, String |
#originator_name ⇒ String
The originator of the wire, set by the sending bank.
79 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 79 required :originator_name, String |
#originator_routing_number ⇒ String
The American Banking Association (ABA) routing number of the bank originating the transfer.
84 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 84 required :originator_routing_number, String |
#originator_to_beneficiary_information ⇒ String
An Increase-created concatenation of the Originator-to-Beneficiary lines.
89 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 89 required :originator_to_beneficiary_information, String |
#originator_to_beneficiary_information_line1 ⇒ String
A free-form message set by the wire originator.
94 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 94 required :originator_to_beneficiary_information_line1, String |
#originator_to_beneficiary_information_line2 ⇒ String
A free-form message set by the wire originator.
99 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 99 required :originator_to_beneficiary_information_line2, String |
#originator_to_beneficiary_information_line3 ⇒ String
A free-form message set by the wire originator.
104 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 104 required :originator_to_beneficiary_information_line3, String |
#originator_to_beneficiary_information_line4 ⇒ String
A free-form message set by the wire originator.
109 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 109 required :originator_to_beneficiary_information_line4, String |
#sender_reference ⇒ String
The sending bank's reference number for the wire transfer.
114 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 114 required :sender_reference, String |
#status ⇒ Symbol
The status of the transfer.
119 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 119 required :status, Increase::Enum.new(:pending, :accepted, :declined, :reversed) |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be inbound_wire_transfer
.
124 |
# File 'lib/increase/models/inbound_wire_transfer.rb', line 124 required :type, Increase::Enum.new(:inbound_wire_transfer) |