Class: Increase::Models::Group
- Defined in:
- lib/increase/models/group.rb
Instance Attribute Summary collapse
-
#ach_debit_status ⇒ Symbol
If the Group is allowed to create ACH debits.
-
#activation_status ⇒ Symbol
If the Group is activated or not.
-
#created_at ⇒ String
The ISO 8601 time at which the Group was created.
-
#id ⇒ String
The Group identifier.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#ach_debit_status ⇒ Symbol
If the Group is allowed to create ACH debits.
14 |
# File 'lib/increase/models/group.rb', line 14 required :ach_debit_status, Increase::Enum.new(:disabled, :enabled) |
#activation_status ⇒ Symbol
If the Group is activated or not.
19 |
# File 'lib/increase/models/group.rb', line 19 required :activation_status, Increase::Enum.new(:unactivated, :activated) |
#created_at ⇒ String
The ISO 8601 time at which the Group was created.
24 |
# File 'lib/increase/models/group.rb', line 24 required :created_at, String |
#id ⇒ String
The Group identifier.
9 |
# File 'lib/increase/models/group.rb', line 9 required :id, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be group
.
29 |
# File 'lib/increase/models/group.rb', line 29 required :type, Increase::Enum.new(:group) |