Class: SDM::RoleAttachment

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

A RoleAttachment assigns a role to a composite role.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attached_role_id: nil, composite_role_id: nil, id: nil) ⇒ RoleAttachment

Returns a new instance of RoleAttachment.



6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
# File 'lib/models/porcelain.rb', line 6179

def initialize(
  attached_role_id: nil,
  composite_role_id: nil,
  id: nil
)
  if attached_role_id != nil
    @attached_role_id = attached_role_id
  end
  if composite_role_id != nil
    @composite_role_id = composite_role_id
  end
  if id != nil
    @id = id
  end
end

Instance Attribute Details

#attached_role_idObject

The id of the attached role of this RoleAttachment.



6173
6174
6175
# File 'lib/models/porcelain.rb', line 6173

def attached_role_id
  @attached_role_id
end

#composite_role_idObject

The id of the composite role of this RoleAttachment.



6175
6176
6177
# File 'lib/models/porcelain.rb', line 6175

def composite_role_id
  @composite_role_id
end

#idObject

Unique identifier of the RoleAttachment.



6177
6178
6179
# File 'lib/models/porcelain.rb', line 6177

def id
  @id
end

Instance Method Details

#to_json(options = {}) ⇒ Object



6195
6196
6197
6198
6199
6200
6201
# File 'lib/models/porcelain.rb', line 6195

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end