Class: Increase::Models::CheckDeposit::DepositAcceptance
- Defined in:
- lib/increase/models/check_deposit.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.
95 |
# File 'lib/increase/models/check_deposit.rb', line 95 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.
100 |
# File 'lib/increase/models/check_deposit.rb', line 100 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.
105 |
# File 'lib/increase/models/check_deposit.rb', line 105 required :auxiliary_on_us, String |
#check_deposit_id ⇒ String
The ID of the Check Deposit that was accepted.
110 |
# File 'lib/increase/models/check_deposit.rb', line 110 required :check_deposit_id, String |
#currency ⇒ Symbol
The ISO 4217 code for the transaction's currency.
115 |
# File 'lib/increase/models/check_deposit.rb', line 115 required :currency, Increase::Enum.new(:CAD, :CHF, :EUR, :GBP, :JPY, :USD) |
#routing_number ⇒ String
The routing number printed on the check.
120 |
# File 'lib/increase/models/check_deposit.rb', line 120 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.
125 |
# File 'lib/increase/models/check_deposit.rb', line 125 required :serial_number, String |