Method: SDM::AccountAttachment#initialize
- Defined in:
- lib/models/porcelain.rb
#initialize(account_id: nil, id: nil, role_id: nil) ⇒ AccountAttachment
Returns a new instance of AccountAttachment.
1232 1233 1234 1235 1236 1237 1238 1239 1240 |
# File 'lib/models/porcelain.rb', line 1232 def initialize( account_id: nil, id: nil, role_id: nil ) @account_id = account_id == nil ? "" : account_id @id = id == nil ? "" : id @role_id = role_id == nil ? "" : role_id end |