Class: SDM::RoleAttachment
- Inherits:
-
Object
- Object
- SDM::RoleAttachment
- Defined in:
- lib/models/porcelain.rb
Overview
A RoleAttachment assigns a role to a composite role.
Instance Attribute Summary collapse
-
#attached_role_id ⇒ Object
The id of the attached role of this RoleAttachment.
-
#composite_role_id ⇒ Object
The id of the composite role of this RoleAttachment.
-
#id ⇒ Object
Unique identifier of the RoleAttachment.
Instance Method Summary collapse
-
#initialize(id: nil, composite_role_id: nil, attached_role_id: nil) ⇒ RoleAttachment
constructor
A new instance of RoleAttachment.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(id: nil, composite_role_id: nil, attached_role_id: nil) ⇒ RoleAttachment
Returns a new instance of RoleAttachment.
6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 |
# File 'lib/models/porcelain.rb', line 6076 def initialize( id: nil, composite_role_id: nil, attached_role_id: nil ) if id != nil @id = id end if composite_role_id != nil @composite_role_id = composite_role_id end if attached_role_id != nil @attached_role_id = attached_role_id end end |
Instance Attribute Details
#attached_role_id ⇒ Object
The id of the attached role of this RoleAttachment.
6074 6075 6076 |
# File 'lib/models/porcelain.rb', line 6074 def attached_role_id @attached_role_id end |
#composite_role_id ⇒ Object
The id of the composite role of this RoleAttachment.
6072 6073 6074 |
# File 'lib/models/porcelain.rb', line 6072 def composite_role_id @composite_role_id end |
#id ⇒ Object
Unique identifier of the RoleAttachment.
6070 6071 6072 |
# File 'lib/models/porcelain.rb', line 6070 def id @id end |
Instance Method Details
#to_json(options = {}) ⇒ Object
6092 6093 6094 6095 6096 6097 6098 |
# File 'lib/models/porcelain.rb', line 6092 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 |