Class: Increase::Models::AccountStatement

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

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 Statement belongs to.

Returns:

  • (String)


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

required :account_id, String

#created_atString

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

Returns:

  • (String)


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

required :created_at, String

#ending_balanceInteger

The Account's balance at the start of its statement period.

Returns:

  • (Integer)


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

required :ending_balance, Integer

#file_idString

The identifier of the File containing a PDF of the statement.

Returns:

  • (String)


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

required :file_id, String

#idString

The Account Statement identifier.

Returns:

  • (String)


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

required :id, String

#starting_balanceInteger

The Account's balance at the start of its statement period.

Returns:

  • (Integer)


34
# File 'lib/increase/models/account_statement.rb', line 34

required :starting_balance, Integer

#statement_period_endString

The ISO 8601 time representing the end of the period the Account Statement covers.

Returns:

  • (String)


39
# File 'lib/increase/models/account_statement.rb', line 39

required :statement_period_end, String

#statement_period_startString

The ISO 8601 time representing the start of the period the Account Statement covers.

Returns:

  • (String)


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

required :statement_period_start, String

#typeSymbol

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

Returns:

  • (Symbol)


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

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