Class: SDM::RoleResource
- Inherits:
-
Object
- Object
- SDM::RoleResource
- Defined in:
- lib/models/porcelain.rb
Overview
RoleResource represents an individual access grant of a Role to a Resource.
Instance Attribute Summary collapse
-
#granted_at ⇒ Object
The most recent time at which access was granted.
-
#resource_id ⇒ Object
The unique identifier of the Resource to which access is granted.
-
#role_id ⇒ Object
The unique identifier of the Role to which access is granted.
Instance Method Summary collapse
-
#initialize(granted_at: nil, resource_id: nil, role_id: nil) ⇒ RoleResource
constructor
A new instance of RoleResource.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(granted_at: nil, resource_id: nil, role_id: nil) ⇒ RoleResource
Returns a new instance of RoleResource.
8578 8579 8580 8581 8582 8583 8584 8585 8586 |
# File 'lib/models/porcelain.rb', line 8578 def initialize( granted_at: nil, resource_id: nil, role_id: nil ) @granted_at = granted_at == nil ? nil : granted_at @resource_id = resource_id == nil ? "" : resource_id @role_id = role_id == nil ? "" : role_id end |
Instance Attribute Details
#granted_at ⇒ Object
The most recent time at which access was granted. If access was granted, revoked, and granted again, this will reflect the later time.
8572 8573 8574 |
# File 'lib/models/porcelain.rb', line 8572 def granted_at @granted_at end |
#resource_id ⇒ Object
The unique identifier of the Resource to which access is granted.
8574 8575 8576 |
# File 'lib/models/porcelain.rb', line 8574 def resource_id @resource_id end |
#role_id ⇒ Object
The unique identifier of the Role to which access is granted.
8576 8577 8578 |
# File 'lib/models/porcelain.rb', line 8576 def role_id @role_id end |
Instance Method Details
#to_json(options = {}) ⇒ Object
8588 8589 8590 8591 8592 8593 8594 |
# File 'lib/models/porcelain.rb', line 8588 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 |