Class: Increase::Models::Transaction::Source::CheckDepositAcceptance
- Inherits:
-
BaseModel
- Object
- BaseModel
- Increase::Models::Transaction::Source::CheckDepositAcceptance
- Defined in:
- lib/increase/models/transaction.rb
Instance Attribute Summary collapse
-
#account_number ⇒ String
The account number printed on the check.
-
#amount ⇒ Integer
The amount to be deposited in the minor unit of the transaction's currency.
-
#auxiliary_on_us ⇒ String
An additional line of metadata printed on the check.
-
#check_deposit_id ⇒ String
The ID of the Check Deposit that was accepted.
-
#currency ⇒ Symbol
The ISO 4217 code for the transaction's currency.
-
#routing_number ⇒ String
The routing number printed on the check.
-
#serial_number ⇒ String
The check serial number, if present, for consumer checks.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#account_number ⇒ String
The account number printed on the check.
1518 |
# File 'lib/increase/models/transaction.rb', line 1518 required :account_number, String |
#amount ⇒ Integer
The amount to be deposited in the minor unit of the transaction's currency. For dollars, for example, this is cents.
1523 |
# File 'lib/increase/models/transaction.rb', line 1523 required :amount, Integer |
#auxiliary_on_us ⇒ String
An additional line of metadata printed on the check. This typically includes the check number for business checks.
1528 |
# File 'lib/increase/models/transaction.rb', line 1528 required :auxiliary_on_us, String |
#check_deposit_id ⇒ String
The ID of the Check Deposit that was accepted.
1533 |
# File 'lib/increase/models/transaction.rb', line 1533 required :check_deposit_id, String |
#currency ⇒ Symbol
The ISO 4217 code for the transaction's currency.
1538 |
# File 'lib/increase/models/transaction.rb', line 1538 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#routing_number ⇒ String
The routing number printed on the check.
1543 |
# File 'lib/increase/models/transaction.rb', line 1543 required :routing_number, String |
#serial_number ⇒ String
The check serial number, if present, for consumer checks. For business checks, the serial number is usually in the auxiliary_on_us
field.
1548 |
# File 'lib/increase/models/transaction.rb', line 1548 required :serial_number, String |