// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class RemoveUserFromGroupRequest extends $dara.Model { /** * @remarks * The name of the RAM user group. * * @example * Test-Team */ groupName?: string; /** * @remarks * The logon name of the RAM user. * * This parameter is required. * * @example * alice@example.onaliyun.com */ userPrincipalName?: string; static names(): { [key: string]: string } { return { groupName: 'GroupName', userPrincipalName: 'UserPrincipalName', }; } static types(): { [key: string]: any } { return { groupName: 'string', userPrincipalName: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }