import * as $dara from '@darabonba/typescript'; export declare class UpdateUserResponseBodyUser extends $dara.Model { /** * @remarks * The description of the RAM user. * * @example * This is a cloud computing engineer. */ comments?: string; /** * @remarks * The point in time when the RAM user was created. The time is displayed in UTC. * * @example * 2015-01-23T12:33:18Z */ createDate?: string; /** * @remarks * The display name of the RAM user. * * @example * xiaoq**** */ displayName?: string; /** * @remarks * The email address of the RAM user. * * > This parameter can be returned only on the China site (aliyun.com). * * @example * xiaoq****@example.com */ email?: string; /** * @remarks * The mobile phone number of the RAM user. * * > This parameter can be returned only on the China site (aliyun.com). * * @example * 86-1860000**** */ mobilePhone?: string; /** * @remarks * The point in time when the information about the RAM user was last modified. The time is displayed in UTC. * * @example * 2015-02-11T03:15:21Z */ updateDate?: string; /** * @remarks * The ID of the RAM user. * * @example * 122748924538**** */ userId?: string; /** * @remarks * The username of the RAM user. * * @example * xiaoq**** */ userName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class UpdateUserResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * 04F0F334-1335-436C-A1D7-6C044FE73368 */ requestId?: string; /** * @remarks * The information about the RAM user. */ user?: UpdateUserResponseBodyUser; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }