Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 834 Bytes

NewInvitation.md

File metadata and controls

25 lines (18 loc) · 834 Bytes

TalonOne::NewInvitation

Properties

Name Type Description Notes
name String Name of the user. [optional]
email String Email address of the user.
is_admin Boolean Indicates whether the user is an `admin`. [optional]
roles Array<Integer> A list of the IDs of the roles assigned to the user. [optional]
acl String Indicates the access level of the user. [optional]

Code Sample

require 'TalonOne'

instance = TalonOne::NewInvitation.new(name: John Doe,
                                 email: john.doe@example.com,
                                 is_admin: false,
                                 roles: null,
                                 acl: null)