// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ListYikeProductionsRequest extends $dara.Model { /** * @example * 50 */ maxResults?: number; /** * @example * Token */ nextToken?: string; /** * @example * 1 */ pageNo?: number; /** * @example * 10 */ pageSize?: number; workspaceId?: string; static names(): { [key: string]: string } { return { maxResults: 'MaxResults', nextToken: 'NextToken', pageNo: 'PageNo', pageSize: 'PageSize', workspaceId: 'WorkspaceId', }; } static types(): { [key: string]: any } { return { maxResults: 'number', nextToken: 'string', pageNo: 'number', pageSize: 'number', workspaceId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }