import * as $dara from '@darabonba/typescript'; export declare class ListDynamicImageJobsRequest extends $dara.Model { /** * @remarks * The end of the time range during which the jobs to be queried were created. * * @example * 2022-07-14T00:00:00Z */ endOfCreateTime?: string; /** * @remarks * The job ID. * * @example * ****cdb3e74639973036bc84**** */ jobId?: string; /** * @remarks * The pagination token that is used in the next request to retrieve a new page of results. * * @example * cdb3e74639973036bc84 */ nextPageToken?: string; /** * @remarks * The order that you use to sort the query results. Valid values: * * 1. CreateTimeAsc: sorts the jobs by creation time in ascending order. * 2. CreateTimeDesc: sorts the jobs by creation time in descending order. * * @example * CreateTimeDesc */ orderBy?: string; /** * @remarks * The number of entries per page. Default value: 20. Maximum value: 100. * * @example * 20 */ pageSize?: number; /** * @remarks * The beginning of the time range during which the jobs to be queried were created. * * @example * 2022-07-12T00:00:00Z */ startOfCreateTime?: string; /** * @remarks * The state of the job. * * Valid values: * * * 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; }); }