import * as $dara from '@darabonba/typescript'; export declare class GetUserRequest extends $dara.Model { /** * @remarks * The 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 * alice */ userName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }