mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-05-31 15:11:56 +00:00
25 lines
1.5 KiB
Markdown
25 lines
1.5 KiB
Markdown
# CreateUserOption
|
|
|
|
## Properties
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**createdAt** | [**Date**](Date.md) | For explicitly setting the user creation timestamp. Useful when users are migrated from other systems. When omitted, the user's creation timestamp will be set to \"now\". | [optional]
|
|
**email** | **String** | |
|
|
**fullName** | **String** | The full display name of the user | [optional]
|
|
**loginName** | **String** | identifier of the user, provided by the external authenticator (if configured) | [optional]
|
|
**mustChangePassword** | **Boolean** | Whether the user must change password on first login | [optional]
|
|
**password** | **String** | The plain text password for the user | [optional]
|
|
**restricted** | **Boolean** | Whether the user has restricted access privileges | [optional]
|
|
**sendNotify** | **Boolean** | Whether to send welcome notification email to the user | [optional]
|
|
**sourceId** | **Long** | The authentication source ID to associate with the user | [optional]
|
|
**username** | **String** | username of the user |
|
|
**visibility** | [**VisibilityEnum**](#VisibilityEnum) | User visibility level: public, limited, or private public UserVisibilityPublic limited UserVisibilityLimited private UserVisibilityPrivate | [optional]
|
|
|
|
<a name="VisibilityEnum"></a>
|
|
## Enum: VisibilityEnum
|
|
Name | Value
|
|
---- | -----
|
|
PUBLIC | "public"
|
|
LIMITED | "limited"
|
|
PRIVATE | "private"
|