import * as $dara from '@darabonba/typescript'; export declare class UpdateUserRequest extends $dara.Model { /** * @remarks * The new description of the RAM user. * * The description must be 1 to 128 characters in length. * * @example * This is a cloud computing engineer. */ newComments?: string; /** * @remarks * The new display name of the RAM user. * * The name must be 1 to 128 characters in length. * * @example * xiaoq**** */ newDisplayName?: string; /** * @remarks * The new email address of the RAM user. * * > This parameter applies only to the China site (aliyun.com). * * @example * xiaoq****@example.com */ newEmail?: string; /** * @remarks * The new mobile phone number of the RAM user. * * Format: \\-\\. * * > This parameter applies only to the China site (aliyun.com). * * @example * 86-1860000**** */ newMobilePhone?: string; /** * @remarks * The new username of the RAM user. * * The username must be 1 to 64 characters in length, and can contain letters, digits, periods (.), hyphens (-), and underscores (_). * * @example * xiaoq**** */ newUserName?: string; /** * @remarks * The username of the RAM user. * * @example * zhangq**** */ userName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }