Sha256: ed80f6b2fba0b9b032042b4b9a11c6c543b44693dbedb76a350bb40c7f9910e9

Contents?: true

Size: 1.32 KB

Versions: 3

Compression:

Stored size: 1.32 KB

Contents

# TalonOne::UpdateUser

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **String** | Name of the user. | [optional] 
**state** | **String** | The state of the user.   - `deactivated`: The user has been deactivated.   - `active`: The user is active.  **Note**: Only `admin` users can update the state of another user.  | [optional] 
**is_admin** | **Boolean** | Indicates whether the user is an `admin`. | [optional] 
**policy** | **String** | Indicates the access level of the user. | [optional] 
**roles** | **Array<Integer>** | A list of the IDs of the roles assigned to the user.  **Note**: To find the ID of a role, use the [List roles](/management-api#tag/Roles/operation/listAllRolesV2) endpoint.  | [optional] 
**application_notification_subscriptions** | [**Object**](.md) | Application notifications that the user is subscribed to. | [optional] 

## Code Sample

```ruby
require 'TalonOne'

instance = TalonOne::UpdateUser.new(name: John Doe,
                                 state: deactivated,
                                 is_admin: false,
                                 policy: ,
                                 roles: [1, 3],
                                 application_notification_subscriptions: null)
```


Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
talon_one-7.0.0 docs/UpdateUser.md
talon_one-6.0.0 docs/UpdateUser.md
talon_one-5.0.0 docs/UpdateUser.md