Class: Increase::Models::AccountNumber
- Defined in:
- lib/increase/models/account_number.rb
Defined Under Namespace
Classes: InboundACH, InboundChecks
Instance Attribute Summary collapse
-
#account_id ⇒ String
The identifier for the account this Account Number belongs to.
-
#account_number ⇒ String
The account number.
-
#created_at ⇒ String
The ISO 8601 time at which the Account Number was created.
-
#id ⇒ String
The Account Number identifier.
-
#idempotency_key ⇒ String
The idempotency key you chose for this object.
-
#inbound_ach ⇒ Increase::Models::AccountNumber::InboundACH
Properties related to how this Account Number handles inbound ACH transfers.
-
#inbound_checks ⇒ Increase::Models::AccountNumber::InboundChecks
Properties related to how this Account Number should handle inbound check withdrawals.
-
#name_ ⇒ String
The name you choose for the Account Number.
-
#routing_number ⇒ String
The American Bankers' Association (ABA) Routing Transit Number (RTN).
-
#status ⇒ Symbol
This indicates if payments can be made to the Account Number.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#account_id ⇒ String
The identifier for the account this Account Number belongs to.
14 |
# File 'lib/increase/models/account_number.rb', line 14 required :account_id, String |
#account_number ⇒ String
The account number.
19 |
# File 'lib/increase/models/account_number.rb', line 19 required :account_number, String |
#created_at ⇒ String
The ISO 8601 time at which the Account Number was created.
24 |
# File 'lib/increase/models/account_number.rb', line 24 required :created_at, String |
#id ⇒ String
The Account Number identifier.
9 |
# File 'lib/increase/models/account_number.rb', line 9 required :id, String |
#idempotency_key ⇒ String
The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about idempotency.
29 |
# File 'lib/increase/models/account_number.rb', line 29 required :idempotency_key, String |
#inbound_ach ⇒ Increase::Models::AccountNumber::InboundACH
Properties related to how this Account Number handles inbound ACH transfers.
34 |
# File 'lib/increase/models/account_number.rb', line 34 required :inbound_ach, -> { Increase::Models::AccountNumber::InboundACH } |
#inbound_checks ⇒ Increase::Models::AccountNumber::InboundChecks
Properties related to how this Account Number should handle inbound check withdrawals.
39 |
# File 'lib/increase/models/account_number.rb', line 39 required :inbound_checks, -> { Increase::Models::AccountNumber::InboundChecks } |
#name_ ⇒ String
The name you choose for the Account Number.
44 |
# File 'lib/increase/models/account_number.rb', line 44 required :name_, String |
#routing_number ⇒ String
The American Bankers' Association (ABA) Routing Transit Number (RTN).
49 |
# File 'lib/increase/models/account_number.rb', line 49 required :routing_number, String |
#status ⇒ Symbol
This indicates if payments can be made to the Account Number.
54 |
# File 'lib/increase/models/account_number.rb', line 54 required :status, Increase::Enum.new(:active, :disabled, :canceled) |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be account_number
.
59 |
# File 'lib/increase/models/account_number.rb', line 59 required :type, Increase::Enum.new(:account_number) |