Class: Increase::Models::Transaction::Source::CheckTransferDeposit
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::Transaction::Source::CheckTransferDeposit
- Defined in:
- lib/increase/models/transaction.rb
Instance Attribute Summary collapse
-
#back_image_file_id ⇒ String
The identifier of the API File object containing an image of the back of the deposited check.
-
#bank_of_first_deposit_routing_number ⇒ String
The American Bankers' Association (ABA) Routing Transit Number (RTN) for the bank depositing this check.
-
#deposited_at ⇒ String
When the check was deposited.
-
#front_image_file_id ⇒ String
The identifier of the API File object containing an image of the front of the deposited check.
-
#inbound_check_deposit_id ⇒ String
The identifier of the Inbound Check Deposit object associated with this transaction.
-
#transaction_id ⇒ String
The identifier of the Transaction object created when the check was deposited.
-
#transfer_id ⇒ String
The identifier of the Check Transfer object that was deposited.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#back_image_file_id ⇒ String
The identifier of the API File object containing an image of the back of the deposited check.
1615 |
# File 'lib/increase/models/transaction.rb', line 1615 required :back_image_file_id, String |
#bank_of_first_deposit_routing_number ⇒ String
The American Bankers' Association (ABA) Routing Transit Number (RTN) for the bank depositing this check. In some rare cases, this is not transmitted via Check21 and the value will be null.
1620 |
# File 'lib/increase/models/transaction.rb', line 1620 required :bank_of_first_deposit_routing_number, String |
#deposited_at ⇒ String
When the check was deposited.
1625 |
# File 'lib/increase/models/transaction.rb', line 1625 required :deposited_at, String |
#front_image_file_id ⇒ String
The identifier of the API File object containing an image of the front of the deposited check.
1630 |
# File 'lib/increase/models/transaction.rb', line 1630 required :front_image_file_id, String |
#inbound_check_deposit_id ⇒ String
The identifier of the Inbound Check Deposit object associated with this transaction.
1635 |
# File 'lib/increase/models/transaction.rb', line 1635 required :inbound_check_deposit_id, String |
#transaction_id ⇒ String
The identifier of the Transaction object created when the check was deposited.
1640 |
# File 'lib/increase/models/transaction.rb', line 1640 required :transaction_id, String |
#transfer_id ⇒ String
The identifier of the Check Transfer object that was deposited.
1645 |
# File 'lib/increase/models/transaction.rb', line 1645 required :transfer_id, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be check_transfer_deposit
.
1650 |
# File 'lib/increase/models/transaction.rb', line 1650 required :type, Increase::Enum.new(:check_transfer_deposit) |