Class: Increase::Models::AccountNumber

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

Defined Under Namespace

Classes: InboundACH, InboundChecks

Instance Attribute Summary collapse

Method Summary

Methods inherited from BaseModel

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

Instance Attribute Details

#account_idString

The identifier for the account this Account Number belongs to.

Returns:

  • (String)


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

required :account_id, String

#account_numberString

The account number.

Returns:

  • (String)


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

required :account_number, String

#created_atString

The ISO 8601 time at which the Account Number was created.

Returns:

  • (String)


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

required :created_at, String

#idString

The Account Number identifier.

Returns:

  • (String)


9
# File 'lib/increase/models/account_number.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)


29
# File 'lib/increase/models/account_number.rb', line 29

required :idempotency_key, String

#inbound_achIncrease::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_checksIncrease::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.

Returns:

  • (String)


44
# File 'lib/increase/models/account_number.rb', line 44

required :name_, String

#routing_numberString

The American Bankers' Association (ABA) Routing Transit Number (RTN).

Returns:

  • (String)


49
# File 'lib/increase/models/account_number.rb', line 49

required :routing_number, String

#statusSymbol

This indicates if payments can be made to the Account Number.

Returns:

  • (Symbol)


54
# File 'lib/increase/models/account_number.rb', line 54

required :status, Increase::Enum.new(:active, :disabled, :canceled)

#typeSymbol

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

Returns:

  • (Symbol)


59
# File 'lib/increase/models/account_number.rb', line 59

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