/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface UpdateUserDto */ export interface UpdateUserDto { /** * The email of the user. Unique value. * @type {string} * @memberof UpdateUserDto */ email: string; /** * The display name (usually first name and last name) of the user. * @type {string} * @memberof UpdateUserDto */ displayName: string; /** * The password of the user. * @type {string} * @memberof UpdateUserDto */ password?: string | null; /** * Additional permissions for the user. * @type {Array} * @memberof UpdateUserDto */ permissions: Array; } /** * Check if a given object implements the UpdateUserDto interface. */ export declare function instanceOfUpdateUserDto(value: any): value is UpdateUserDto; export declare function UpdateUserDtoFromJSON(json: any): UpdateUserDto; export declare function UpdateUserDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): UpdateUserDto; export declare function UpdateUserDtoToJSON(value?: UpdateUserDto | null, _ignoreDiscriminator?: boolean): any;