Class: Increase::Models::PendingTransaction::Source::CheckDepositInstruction
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::PendingTransaction::Source::CheckDepositInstruction
- Defined in:
- lib/increase/models/pending_transaction.rb
Instance Attribute Summary collapse
-
#amount ⇒ Integer
The pending amount in the minor unit of the transaction's currency.
-
#back_image_file_id ⇒ String
The identifier of the File containing the image of the back of the check that was deposited.
-
#check_deposit_id ⇒ String
The identifier of the Check Deposit.
-
#currency ⇒ Symbol
The ISO 4217 code for the transaction's currency.
-
#front_image_file_id ⇒ String
The identifier of the File containing the image of the front of the check that was deposited.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#amount ⇒ Integer
The pending amount in the minor unit of the transaction's currency. For dollars, for example, this is cents.
425 |
# File 'lib/increase/models/pending_transaction.rb', line 425 required :amount, Integer |
#back_image_file_id ⇒ String
The identifier of the File containing the image of the back of the check that was deposited.
430 |
# File 'lib/increase/models/pending_transaction.rb', line 430 required :back_image_file_id, String |
#check_deposit_id ⇒ String
The identifier of the Check Deposit.
435 |
# File 'lib/increase/models/pending_transaction.rb', line 435 required :check_deposit_id, String |
#currency ⇒ Symbol
The ISO 4217 code for the transaction's currency.
440 |
# File 'lib/increase/models/pending_transaction.rb', line 440 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#front_image_file_id ⇒ String
The identifier of the File containing the image of the front of the check that was deposited.
445 |
# File 'lib/increase/models/pending_transaction.rb', line 445 required :front_image_file_id, String |