# CreateUserOption

CreateUserOption create user options

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**created_at** | **string** | For explicitly setting the user creation timestamp. Useful when users are migrated from other systems. When omitted, the user\&#39;s creation timestamp will be set to \&quot;now\&quot;. | [optional] [default to undefined]
**email** | **string** |  | [default to undefined]
**full_name** | **string** |  | [optional] [default to undefined]
**login_name** | **string** |  | [optional] [default to undefined]
**must_change_password** | **boolean** |  | [optional] [default to undefined]
**password** | **string** |  | [optional] [default to undefined]
**restricted** | **boolean** |  | [optional] [default to undefined]
**send_notify** | **boolean** |  | [optional] [default to undefined]
**source_id** | **number** |  | [optional] [default to undefined]
**username** | **string** |  | [default to undefined]
**visibility** | **string** |  | [optional] [default to undefined]

## Example

```typescript
import { CreateUserOption } from 'berg';

const instance: CreateUserOption = {
    created_at,
    email,
    full_name,
    login_name,
    must_change_password,
    password,
    restricted,
    send_notify,
    source_id,
    username,
    visibility,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
