import * as $dara from '@darabonba/typescript'; export declare class ListMediaConvertJobsRequest extends $dara.Model { /** * @remarks * The end of the time range to filter jobs by creation time. The time must be in the `yyyy-MM-ddTHH:mm:ssZ` ISO 8601 format. * * @example * 2022-07-15T00:00:00Z */ endOfCreateTime?: string; /** * @remarks * Filters the results by job ID. * * @example * 88c6ca184c0e47098a5b665e2**** */ jobId?: string; /** * @remarks * The token for the next page of results. Leave this empty for the first request. To retrieve the next page, pass the `NextPageToken` value from the previous response. * * @example * ab4802364a2e49208c99efab82dfa8e8 */ nextPageToken?: string; /** * @remarks * The sort order for the results. Valid values: `CreateTimeDesc` (descending by creation time) and `CreateTimeAsc` (ascending by creation time). * * @example * CreateTimeDesc */ orderBy?: string; /** * @remarks * The page size. Valid values: 1 to 100. Default value: 20. * * @example * 10 */ pageSize?: number; /** * @remarks * The start of the time range to filter jobs by creation time. The time must be in the `yyyy-MM-ddTHH:mm:ssZ` ISO 8601 format. * * @example * 2022-07-01T00:00:00Z */ startOfCreateTime?: string; /** * @remarks * The status of the job. Valid values: * * - `Inited`: The job has been submitted. * * - `Running`: The job is running. * * - `Complete`: The job is complete. * * - `Error`: The job failed due to an error. * * @example * Success */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }