Class: SDM::AccountPermission
- Inherits:
-
Object
- Object
- SDM::AccountPermission
- Defined in:
- lib/models/porcelain.rb
Overview
AccountPermission represents an individual API action available to an account.
Instance Attribute Summary collapse
-
#account_id ⇒ Object
The unique identifier of the Account this permission belongs to.
-
#granted_at ⇒ Object
The most recent time at which the permission was granted.
-
#permission ⇒ Object
The value of this permission, split into vertical and action, one of the Permission constants.
-
#scope ⇒ Object
The scope of this permission.
-
#scoped_id ⇒ Object
The ID to which or in whose context this operation is permitted.
Instance Method Summary collapse
-
#initialize(account_id: nil, granted_at: nil, permission: nil, scope: nil, scoped_id: nil) ⇒ AccountPermission
constructor
A new instance of AccountPermission.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(account_id: nil, granted_at: nil, permission: nil, scope: nil, scoped_id: nil) ⇒ AccountPermission
Returns a new instance of AccountPermission.
1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 |
# File 'lib/models/porcelain.rb', line 1516 def initialize( account_id: nil, granted_at: nil, permission: nil, scope: nil, scoped_id: nil ) @account_id = account_id == nil ? "" : account_id @granted_at = granted_at == nil ? nil : granted_at @permission = == nil ? "" : @scope = scope == nil ? "" : scope @scoped_id = scoped_id == nil ? "" : scoped_id end |
Instance Attribute Details
#account_id ⇒ Object
The unique identifier of the Account this permission belongs to.
1500 1501 1502 |
# File 'lib/models/porcelain.rb', line 1500 def account_id @account_id end |
#granted_at ⇒ Object
The most recent time at which the permission was granted. If a permission was granted, revoked, and granted again, this will reflect the later time.
1503 1504 1505 |
# File 'lib/models/porcelain.rb', line 1503 def granted_at @granted_at end |
#permission ⇒ Object
The value of this permission, split into vertical and action, one of the Permission constants.
1505 1506 1507 |
# File 'lib/models/porcelain.rb', line 1505 def @permission end |
#scope ⇒ Object
The scope of this permission. A global scope means this action can be taken on any entity; otherwise the action can only be taken on or in the scope of the scoped id.
1509 1510 1511 |
# File 'lib/models/porcelain.rb', line 1509 def scope @scope end |
#scoped_id ⇒ Object
The ID to which or in whose context this operation is permitted. e.g. The ID of a role that a team leader has the abillity to remove and add accounts to, or the ID of a resource that a user has the permission to connect to. If Scope is global, scoped id is not populated.
1514 1515 1516 |
# File 'lib/models/porcelain.rb', line 1514 def scoped_id @scoped_id end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1530 1531 1532 1533 1534 1535 1536 |
# File 'lib/models/porcelain.rb', line 1530 def to_json( = {}) hash = {} self.instance_variables.each do |var| hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var end hash.to_json end |