// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ListUsersForGroupResponseBodyUsersUser extends $dara.Model { displayName?: string; joinDate?: string; userId?: string; userPrincipalName?: string; static names(): { [key: string]: string } { return { displayName: 'DisplayName', joinDate: 'JoinDate', userId: 'UserId', userPrincipalName: 'UserPrincipalName', }; } static types(): { [key: string]: any } { return { displayName: 'string', joinDate: 'string', userId: 'string', userPrincipalName: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class ListUsersForGroupResponseBodyUsers extends $dara.Model { user?: ListUsersForGroupResponseBodyUsersUser[]; static names(): { [key: string]: string } { return { user: 'User', }; } static types(): { [key: string]: any } { return { user: { 'type': 'array', 'itemType': ListUsersForGroupResponseBodyUsersUser }, }; } validate() { if(Array.isArray(this.user)) { $dara.Model.validateArray(this.user); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class ListUsersForGroupResponseBody extends $dara.Model { /** * @remarks * Indicates whether the response is truncated. Valid values: * * - true * * - false * * @example * true */ isTruncated?: boolean; /** * @remarks * The pagination token that is used in the next request to retrieve a new page of results. * * > This parameter is returned only when `IsTruncated` is `true`. * * @example * EXAMPLE */ marker?: string; /** * @remarks * The request ID. * * @example * 789FF581-B3C8-43A8-9115-54304B46D05C */ requestId?: string; users?: ListUsersForGroupResponseBodyUsers; static names(): { [key: string]: string } { return { isTruncated: 'IsTruncated', marker: 'Marker', requestId: 'RequestId', users: 'Users', }; } static types(): { [key: string]: any } { return { isTruncated: 'boolean', marker: 'string', requestId: 'string', users: ListUsersForGroupResponseBodyUsers, }; } validate() { if(this.users && typeof (this.users as any).validate === 'function') { (this.users as any).validate(); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }