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