Class: Increase::Models::IntrafiAccountEnrollment

Inherits:
BaseModel
  • Object
show all
Defined in:
lib/increase/models/intrafi_account_enrollment.rb

Instance Attribute Summary collapse

Method Summary

Methods inherited from BaseModel

#[], #inspect, #to_h, #to_s

Instance Attribute Details

#account_idString

The identifier of the Increase Account being swept into the network.

Returns:

  • (String)


14
# File 'lib/increase/models/intrafi_account_enrollment.rb', line 14

required :account_id, String

#idString

The identifier of this enrollment at IntraFi.

Returns:

  • (String)


9
# File 'lib/increase/models/intrafi_account_enrollment.rb', line 9

required :id, String

#idempotency_keyString

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.

Returns:

  • (String)


19
# File 'lib/increase/models/intrafi_account_enrollment.rb', line 19

required :idempotency_key, String

#intrafi_idString

The identifier of the account in IntraFi's system. This identifier will be printed on any IntraFi statements or documents.

Returns:

  • (String)


24
# File 'lib/increase/models/intrafi_account_enrollment.rb', line 24

required :intrafi_id, String

#statusSymbol

The status of the account in the network. An account takes about one business day to go from pending_enrolling to enrolled.

Returns:

  • (Symbol)


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)

#typeSymbol

A constant representing the object's type. For this resource it will always be intrafi_account_enrollment.

Returns:

  • (Symbol)


35
# File 'lib/increase/models/intrafi_account_enrollment.rb', line 35

required :type, Increase::Enum.new(:intrafi_account_enrollment)