// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export 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 } { return { comments: 'Comments', displayName: 'DisplayName', email: 'Email', mobilePhone: 'MobilePhone', userName: 'UserName', }; } static types(): { [key: string]: any } { return { comments: 'string', displayName: 'string', email: 'string', mobilePhone: 'string', userName: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }