Class: Increase::Models::ExternalAccount
- Defined in:
- lib/increase/models/external_account.rb
Instance Attribute Summary collapse
-
#account_holder ⇒ Symbol
The type of entity that owns the External Account.
-
#account_number ⇒ String
The destination account number.
-
#created_at ⇒ String
The ISO 8601 date and time at which the External Account was created.
-
#description ⇒ String
The External Account's description for display purposes.
-
#funding ⇒ Symbol
The type of the account to which the transfer will be sent.
-
#id ⇒ String
The External Account's identifier.
-
#idempotency_key ⇒ String
The idempotency key you chose for this object.
-
#routing_number ⇒ String
The American Bankers' Association (ABA) Routing Transit Number (RTN).
-
#status ⇒ Symbol
The External Account's status.
-
#type ⇒ Symbol
A constant representing the object's type.
-
#verification_status ⇒ Symbol
If you have verified ownership of the External Account.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#account_holder ⇒ Symbol
The type of entity that owns the External Account.
14 |
# File 'lib/increase/models/external_account.rb', line 14 required :account_holder, Increase::Enum.new(:business, :individual, :unknown) |
#account_number ⇒ String
The destination account number.
19 |
# File 'lib/increase/models/external_account.rb', line 19 required :account_number, String |
#created_at ⇒ String
The ISO 8601 date and time at which the External Account was created.
24 |
# File 'lib/increase/models/external_account.rb', line 24 required :created_at, String |
#description ⇒ String
The External Account's description for display purposes.
29 |
# File 'lib/increase/models/external_account.rb', line 29 required :description, String |
#funding ⇒ Symbol
The type of the account to which the transfer will be sent.
34 |
# File 'lib/increase/models/external_account.rb', line 34 required :funding, Increase::Enum.new(:checking, :savings, :other) |
#id ⇒ String
The External Account's identifier.
9 |
# File 'lib/increase/models/external_account.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.
39 |
# File 'lib/increase/models/external_account.rb', line 39 required :idempotency_key, String |
#routing_number ⇒ String
The American Bankers' Association (ABA) Routing Transit Number (RTN).
44 |
# File 'lib/increase/models/external_account.rb', line 44 required :routing_number, String |
#status ⇒ Symbol
The External Account's status.
49 |
# File 'lib/increase/models/external_account.rb', line 49 required :status, Increase::Enum.new(:active, :archived) |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be external_account
.
54 |
# File 'lib/increase/models/external_account.rb', line 54 required :type, Increase::Enum.new(:external_account) |
#verification_status ⇒ Symbol
If you have verified ownership of the External Account.
59 |
# File 'lib/increase/models/external_account.rb', line 59 required :verification_status, Increase::Enum.new(:unverified, :pending, :verified) |