Method: SDM::RemoteIdentity#initialize

Defined in:
lib/models/porcelain.rb

#initialize(account_id: nil, id: nil, remote_identity_group_id: nil, username: nil) ⇒ RemoteIdentity

Returns a new instance of RemoteIdentity.



9217
9218
9219
9220
9221
9222
9223
9224
9225
9226
9227
# File 'lib/models/porcelain.rb', line 9217

def initialize(
  account_id: nil,
  id: nil,
  remote_identity_group_id: nil,
  username: nil
)
  @account_id =  == nil ? "" : 
  @id = id == nil ? "" : id
  @remote_identity_group_id = remote_identity_group_id == nil ? "" : remote_identity_group_id
  @username = username == nil ? "" : username
end