// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ListMediaConvertJobsRequest extends $dara.Model { /** * @remarks * The end of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. * * @example * 2022-07-15T00:00:00Z */ endOfCreateTime?: string; /** * @remarks * The task ID. * * @example * 88c6ca184c0e47098a5b665e2**** */ jobId?: string; /** * @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. * * @example * ab4802364a2e49208c99efab82dfa8e8 */ nextPageToken?: string; /** * @remarks * The sorting order. Valid values: CreateTimeDesc: sorts by create time in descending order. CreateTimeAsc: sorts by create time in ascending order. * * @example * CreateTimeDesc */ orderBy?: string; /** * @remarks * The number of entries per page. Valid values: 0 to 100. Default value: 20. * * @example * 10 */ pageSize?: number; /** * @remarks * The beginning of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. * * @example * 2022-07-01T00:00:00Z */ startOfCreateTime?: string; /** * @remarks * The task status. * * * Inited: submitted * * Running * * Complete * * Error * * @example * Success */ status?: string; static names(): { [key: string]: string } { return { endOfCreateTime: 'EndOfCreateTime', jobId: 'JobId', nextPageToken: 'NextPageToken', orderBy: 'OrderBy', pageSize: 'PageSize', startOfCreateTime: 'StartOfCreateTime', status: 'Status', }; } static types(): { [key: string]: any } { return { endOfCreateTime: 'string', jobId: 'string', nextPageToken: 'string', orderBy: 'string', pageSize: 'number', startOfCreateTime: 'string', status: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }