Class: SDM::AccountAttachment
- Inherits:
-
Object
- Object
- SDM::AccountAttachment
- Defined in:
- lib/models/porcelain.rb
Overview
AccountAttachments assign an account to a role.
Instance Attribute Summary collapse
-
#account_id ⇒ Object
The id of the account of this AccountAttachment.
-
#id ⇒ Object
Unique identifier of the AccountAttachment.
-
#role_id ⇒ Object
The id of the attached role of this AccountAttachment.
Instance Method Summary collapse
-
#initialize(id: nil, account_id: nil, role_id: nil) ⇒ AccountAttachment
constructor
A new instance of AccountAttachment.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(id: nil, account_id: nil, role_id: nil) ⇒ AccountAttachment
Returns a new instance of AccountAttachment.
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
# File 'lib/models/porcelain.rb', line 246 def initialize( id: nil, account_id: nil, role_id: nil ) if id != nil @id = id end if account_id != nil @account_id = account_id end if role_id != nil @role_id = role_id end end |
Instance Attribute Details
#account_id ⇒ Object
The id of the account of this AccountAttachment.
242 243 244 |
# File 'lib/models/porcelain.rb', line 242 def account_id @account_id end |
#id ⇒ Object
Unique identifier of the AccountAttachment.
240 241 242 |
# File 'lib/models/porcelain.rb', line 240 def id @id end |
#role_id ⇒ Object
The id of the attached role of this AccountAttachment.
244 245 246 |
# File 'lib/models/porcelain.rb', line 244 def role_id @role_id end |
Instance Method Details
#to_json(options = {}) ⇒ Object
262 263 264 265 266 267 268 |
# File 'lib/models/porcelain.rb', line 262 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 |