import { UserTypeEnum } from './UserTypeEnum';
/** An IAM user creation request */
export interface UserRequest {
    /** User's description */
    description: string;
    /** User's email */
    email: string;
    /** User's group */
    group: string;
    /** User's login */
    login: string;
    /** User's password */
    password: string;
    /** Type of user to create */
    type: UserTypeEnum;
}
//# sourceMappingURL=UserRequest.d.ts.map