Class: Increase::Models::AccountStatement
- Defined in:
- lib/increase/models/account_statement.rb
Instance Attribute Summary collapse
-
#account_id ⇒ String
The identifier for the Account this Account Statement belongs to.
-
#created_at ⇒ String
The ISO 8601 time at which the Account Statement was created.
-
#ending_balance ⇒ Integer
The Account's balance at the start of its statement period.
-
#file_id ⇒ String
The identifier of the File containing a PDF of the statement.
-
#id ⇒ String
The Account Statement identifier.
-
#starting_balance ⇒ Integer
The Account's balance at the start of its statement period.
-
#statement_period_end ⇒ String
The ISO 8601 time representing the end of the period the Account Statement covers.
-
#statement_period_start ⇒ String
The ISO 8601 time representing the start of the period the Account Statement covers.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#account_id ⇒ String
The identifier for the Account this Account Statement belongs to.
14 |
# File 'lib/increase/models/account_statement.rb', line 14 required :account_id, String |
#created_at ⇒ String
The ISO 8601 time at which the Account Statement was created.
19 |
# File 'lib/increase/models/account_statement.rb', line 19 required :created_at, String |
#ending_balance ⇒ Integer
The Account's balance at the start of its statement period.
24 |
# File 'lib/increase/models/account_statement.rb', line 24 required :ending_balance, Integer |
#file_id ⇒ String
The identifier of the File containing a PDF of the statement.
29 |
# File 'lib/increase/models/account_statement.rb', line 29 required :file_id, String |
#id ⇒ String
The Account Statement identifier.
9 |
# File 'lib/increase/models/account_statement.rb', line 9 required :id, String |
#starting_balance ⇒ Integer
The Account's balance at the start of its statement period.
34 |
# File 'lib/increase/models/account_statement.rb', line 34 required :starting_balance, Integer |
#statement_period_end ⇒ String
The ISO 8601 time representing the end of the period the Account Statement covers.
39 |
# File 'lib/increase/models/account_statement.rb', line 39 required :statement_period_end, String |
#statement_period_start ⇒ String
The ISO 8601 time representing the start of the period the Account Statement covers.
44 |
# File 'lib/increase/models/account_statement.rb', line 44 required :statement_period_start, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be account_statement
.
49 |
# File 'lib/increase/models/account_statement.rb', line 49 required :type, Increase::Enum.new(:account_statement) |