// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ListGroupsRequest extends $dara.Model { /** * @remarks * The pagination token that is used in the next request to retrieve a new page of results. You do not need to specify this parameter for the first request.`` * * When you call the operation for the first time, if the total number of returned entries exceeds the value of `MaxItems`, the entries are truncated. The system returns entries based on the value of `MaxItems` and does not return the excess entries. In this case, the value of the response parameter `IsTruncated` is `true`, and `Marker` is returned. In the next call, you can use the value of `Marker` and maintain the settings of the other request parameters to query the excess entries. You can repeat the call until the value of `IsTruncated` becomes `false`. This way, all entries are returned. * * @example * EXAMPLE */ marker?: string; /** * @remarks * The number of entries per page. * * Valid values: 1 to 100. * * Default value: 100. * * @example * 100 */ maxItems?: number; static names(): { [key: string]: string } { return { marker: 'Marker', maxItems: 'MaxItems', }; } static types(): { [key: string]: any } { return { marker: 'string', maxItems: 'number', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }