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.



223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
# File 'lib/models/porcelain.rb', line 223

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.



219
220
221
# File 'lib/models/porcelain.rb', line 219

def 
  @account_id
end

#idObject

Unique identifier of the AccountAttachment.



217
218
219
# File 'lib/models/porcelain.rb', line 217

def id
  @id
end

#role_idObject

The id of the attached role of this AccountAttachment.



221
222
223
# File 'lib/models/porcelain.rb', line 221

def role_id
  @role_id
end

Instance Method Details

#to_json(options = {}) ⇒ Object



239
240
241
242
243
244
245
# File 'lib/models/porcelain.rb', line 239

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