import * as $dara from '@darabonba/typescript'; export declare class GetUserResponseBodyUser extends $dara.Model { /** * @remarks * The description of the RAM user. * * @example * 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 * alice */ displayName?: string; /** * @remarks * The email address of the RAM user. * * > This parameter can be returned only on the China site (aliyun.com). * * @example * alice@example.com */ email?: string; /** * @remarks * The point in time when the RAM user last logged on to the Alibaba Cloud Management Console by using the password. The time is displayed in UTC. * * @example * 2015-01-23T12:33:18Z */ lastLoginDate?: 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 * 222748924538**** */ userId?: string; /** * @remarks * The username of the RAM user. * * @example * alice */ userName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetUserResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * 2D69A58F-345C-4FDE-88E4-BF5189484043 */ requestId?: string; /** * @remarks * The information about the RAM user. */ user?: GetUserResponseBodyUser; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }