/
githubmirror
/
halo
Обзор
Документация
Войти
/
githubmirror
/
halo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ui/packages/api-client/src/models/create-user-request.ts
57 строк
1 KB
Ryan Wang
Prepare 2.26.0 snapshot version (#10079)
12 июн 2026, 10:25
Не верифицирован
12 июн 2026, 10:25
aea0101
Код
Авторство
О чём код?
/* tslint:disable */ /* eslint-disable */ /** * Halo * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2.26.0-SNAPSHOT * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Payload for creating a user from the console. */ export interface CreateUserRequest { /** * metadata annotations to set on the user */ 'annotations'?: { [key: string]: string; }; /** * avatar URL of the user */ 'avatar'?: string; /** * biography or profile text of the user */ 'bio'?: string; /** * display name shown in the console and theme */ 'displayName'?: string; /** * email address of the user */ 'email': string; /** * user <code>metadata.name</code>, which also serves as the login name */ 'name': string; /** * raw password to set for the user */ 'password'?: string; /** * phone number of the user */ 'phone'?: string; /** * role <code>metadata.name</code> values to grant to the user after creation */ 'roles'?: Array<string>; }