Name | Type | Description | Notes |
---|---|---|---|
name | String | Name of the user. | [optional] |
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] |
require 'TalonOne'
instance = TalonOne::NewInvitation.new(name: John Doe,
email: john.doe@example.com,
is_admin: false,
roles: null,
acl: null)