Class: Increase::Models::IntrafiAccountEnrollment
- Defined in:
- lib/increase/models/intrafi_account_enrollment.rb
Instance Attribute Summary collapse
-
#account_id ⇒ String
The identifier of the Increase Account being swept into the network.
-
#id ⇒ String
The identifier of this enrollment at IntraFi.
-
#idempotency_key ⇒ String
The idempotency key you chose for this object.
-
#intrafi_id ⇒ String
The identifier of the account in IntraFi's system.
-
#status ⇒ Symbol
The status of the account in the network.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#account_id ⇒ String
The identifier of the Increase Account being swept into the network.
14 |
# File 'lib/increase/models/intrafi_account_enrollment.rb', line 14 required :account_id, String |
#id ⇒ String
The identifier of this enrollment at IntraFi.
9 |
# File 'lib/increase/models/intrafi_account_enrollment.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.
19 |
# File 'lib/increase/models/intrafi_account_enrollment.rb', line 19 required :idempotency_key, String |
#intrafi_id ⇒ String
The identifier of the account in IntraFi's system. This identifier will be printed on any IntraFi statements or documents.
24 |
# File 'lib/increase/models/intrafi_account_enrollment.rb', line 24 required :intrafi_id, String |
#status ⇒ Symbol
The status of the account in the network. An account takes about one business day to go from pending_enrolling
to enrolled
.
29 30 |
# File 'lib/increase/models/intrafi_account_enrollment.rb', line 29 required :status, Increase::Enum.new(:pending_enrolling, :enrolled, :pending_unenrolling, :unenrolled, :requires_attention) |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be intrafi_account_enrollment
.
35 |
# File 'lib/increase/models/intrafi_account_enrollment.rb', line 35 required :type, Increase::Enum.new(:intrafi_account_enrollment) |