Class: Increase::Models::Program
- Defined in:
- lib/increase/models/program.rb
Instance Attribute Summary collapse
-
#billing_account_id ⇒ String
The Program billing account.
-
#created_at ⇒ String
The ISO 8601 time at which the Program was created.
-
#default_digital_card_profile_id ⇒ String
The default configuration for digital cards attached to this Program.
-
#id ⇒ String
The Program identifier.
-
#interest_rate ⇒ String
The Interest Rate currently being earned on the accounts in this program, as a string containing a decimal number.
-
#name_ ⇒ String
The name of the Program.
-
#type ⇒ Symbol
A constant representing the object's type.
-
#updated_at ⇒ String
The ISO 8601 time at which the Program was last updated.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#billing_account_id ⇒ String
The Program billing account.
14 |
# File 'lib/increase/models/program.rb', line 14 required :billing_account_id, String |
#created_at ⇒ String
The ISO 8601 time at which the Program was created.
19 |
# File 'lib/increase/models/program.rb', line 19 required :created_at, String |
#default_digital_card_profile_id ⇒ String
The default configuration for digital cards attached to this Program.
24 |
# File 'lib/increase/models/program.rb', line 24 required :default_digital_card_profile_id, String |
#id ⇒ String
The Program identifier.
9 |
# File 'lib/increase/models/program.rb', line 9 required :id, String |
#interest_rate ⇒ String
The Interest Rate currently being earned on the accounts in this program, as a string containing a decimal number. For example, a 1% interest rate would be represented as "0.01".
29 |
# File 'lib/increase/models/program.rb', line 29 required :interest_rate, String |
#name_ ⇒ String
The name of the Program.
34 |
# File 'lib/increase/models/program.rb', line 34 required :name_, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be program
.
39 |
# File 'lib/increase/models/program.rb', line 39 required :type, Increase::Enum.new(:program) |
#updated_at ⇒ String
The ISO 8601 time at which the Program was last updated.
44 |
# File 'lib/increase/models/program.rb', line 44 required :updated_at, String |