Class: SDM::AccountAttachment

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

Overview

AccountAttachments assign an account to a role or composite role.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id: nil, account_id: nil, role_id: nil) ⇒ AccountAttachment

Returns a new instance of AccountAttachment.



249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
# File 'lib/models/porcelain.rb', line 249

def initialize(
  id: nil,
  account_id: nil,
  role_id: nil
)
  if id != nil
    @id = id
  end
  if  != nil
    @account_id = 
  end
  if role_id != nil
    @role_id = role_id
  end
end

Instance Attribute Details

#account_idObject

The id of the account of this AccountAttachment.



245
246
247
# File 'lib/models/porcelain.rb', line 245

def 
  @account_id
end

#idObject

Unique identifier of the AccountAttachment.



243
244
245
# File 'lib/models/porcelain.rb', line 243

def id
  @id
end

#role_idObject

The id of the attached role of this AccountAttachment.



247
248
249
# File 'lib/models/porcelain.rb', line 247

def role_id
  @role_id
end

Instance Method Details

#to_json(options = {}) ⇒ Object



265
266
267
268
269
270
271
# File 'lib/models/porcelain.rb', line 265

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