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.



7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
# File 'lib/models/porcelain.rb', line 7490

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