Class: Increase::Models::OAuthConnection
- Defined in:
- lib/increase/models/oauth_connection.rb
Instance Attribute Summary collapse
-
#created_at ⇒ String
The ISO 8601 timestamp when the OAuth Connection was created.
-
#deleted_at ⇒ String
The ISO 8601 timestamp when the OAuth Connection was deleted.
-
#group_id ⇒ String
The identifier of the Group that has authorized your OAuth application.
-
#id ⇒ String
The OAuth Connection's identifier.
-
#status ⇒ Symbol
Whether the connection is active.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#created_at ⇒ String
The ISO 8601 timestamp when the OAuth Connection was created.
14 |
# File 'lib/increase/models/oauth_connection.rb', line 14 required :created_at, String |
#deleted_at ⇒ String
The ISO 8601 timestamp when the OAuth Connection was deleted.
19 |
# File 'lib/increase/models/oauth_connection.rb', line 19 required :deleted_at, String |
#group_id ⇒ String
The identifier of the Group that has authorized your OAuth application.
24 |
# File 'lib/increase/models/oauth_connection.rb', line 24 required :group_id, String |
#id ⇒ String
The OAuth Connection's identifier.
9 |
# File 'lib/increase/models/oauth_connection.rb', line 9 required :id, String |
#status ⇒ Symbol
Whether the connection is active.
29 |
# File 'lib/increase/models/oauth_connection.rb', line 29 required :status, Increase::Enum.new(:active, :inactive) |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be oauth_connection
.
34 |
# File 'lib/increase/models/oauth_connection.rb', line 34 required :type, Increase::Enum.new(:oauth_connection) |