Class: SDM::RoleAttachment

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

Overview

A RoleAttachment assigns a role to a composite role.

Deprecated: use multi-role via AccountAttachments instead.

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.



5085
5086
5087
5088
5089
5090
5091
5092
5093
# File 'lib/models/porcelain.rb', line 5085

def initialize(
  attached_role_id: nil,
  composite_role_id: nil,
  id: nil
)
  @attached_role_id = attached_role_id == nil ? "" : attached_role_id
  @composite_role_id = composite_role_id == nil ? "" : composite_role_id
  @id = id == nil ? "" : id
end

Instance Attribute Details

#attached_role_idObject

The id of the attached role of this RoleAttachment.



5079
5080
5081
# File 'lib/models/porcelain.rb', line 5079

def attached_role_id
  @attached_role_id
end

#composite_role_idObject

The id of the composite role of this RoleAttachment.



5081
5082
5083
# File 'lib/models/porcelain.rb', line 5081

def composite_role_id
  @composite_role_id
end

#idObject

Unique identifier of the RoleAttachment.



5083
5084
5085
# File 'lib/models/porcelain.rb', line 5083

def id
  @id
end

Instance Method Details

#to_json(options = {}) ⇒ Object



5095
5096
5097
5098
5099
5100
5101
# File 'lib/models/porcelain.rb', line 5095

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