import * as $dara from '@darabonba/typescript'; export declare class ListTranscodeJobsRequest extends $dara.Model { /** * @remarks * The end of the time range during which the jobs to be queried were created. 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 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 order that you use to sort the query results. Valid values: * * * CreateTimeDesc: sorts the query results by creation time in descending order. * * CreateTimeAsc: sorts the query results by creation 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 job ID. * * @example * 7b38a5d86f1e47838927b6e7ccb1**** */ parentJobId?: string; /** * @remarks * The beginning of the time range during which the jobs to be queried were created. 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 state of the job. * * * Init: The job is submitted. * * Success: The job is successful. * * Fail: The job failed. * * @example * Success */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }