Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 707 Bytes

ScimNewUser.md

File metadata and controls

23 lines (16 loc) · 707 Bytes

TalonOne::ScimNewUser

Properties

Name Type Description Notes
active Boolean Status of the user. [optional]
display_name String Display name of the user. [optional]
user_name String Unique identifier of the user. This is usually an email address.
name ScimBaseUserName [optional]

Code Sample

require 'TalonOne'

instance = TalonOne::ScimNewUser.new(active: true,
                                 display_name: John Doe,
                                 user_name: john.doe@example.com,
                                 name: null)