import * as $dara from '@darabonba/typescript'; export declare class QueryMediaCensorJobListRequest extends $dara.Model { /** * @remarks * The end of the time range to query. * * * Specify the time in the ISO 8601 standard. The time must be in UTC. * * Format: yyyy-MM-ddTHH:mm:ssZ. * * @example * 2022-02-14T02:16:07Z */ endOfJobCreatedTimeRange?: string; /** * @remarks * The IDs of the content moderation jobs. You can obtain the ID of a content moderation job from the response parameters of the SubmitMediaCensorJob operation. Separate multiple IDs with commas (,). * * @example * fa9c34be3bcf42919ac4d1775239****,78dc866518b843259669df58ed30**** */ jobIds?: string; /** * @remarks * The number of entries per page. * * * Default value: **30**. * * Valid values: **1 to 300**. * * @example * 20 */ maximumPageSize?: number; /** * @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. You must specify the token that is obtained from the previous query as the value of NextToken. * * @example * 79aff3eee82242e092899db5f669 */ nextPageToken?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The ID of the ApsaraVideo Media Processing (MPS) queue to which the jobs were submitted. * * @example * c5b30b7c0d0e4a0abde1d5f9e751**** */ pipelineId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The beginning of the time range to query. * * * Specify the time in the ISO 8601 standard. The time must be in UTC. * * Format: yyyy-MM-ddTHH:mm:ssZ. * * @example * 2021-12-22T03:48:05Z */ startOfJobCreatedTimeRange?: string; /** * @remarks * The state of the jobs that you want to query. Valid values: * * * **All**: all jobs. * * **Queuing**: the jobs that are waiting in the queue. * * **Analysing**: the jobs that are in progress. * * **Fail**: failed jobs. * * **Success**: successful jobs. * * @example * All */ state?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }