Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 784 Bytes

ScimUser.md

File metadata and controls

25 lines (18 loc) · 784 Bytes

TalonOne::ScimUser

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]
id String ID of the user.

Code Sample

require 'TalonOne'

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