import * as $dara from '@darabonba/typescript'; import { MediaConvertJobWithoutDetail } from "./MediaConvertJobWithoutDetail"; export declare class ListMediaConvertJobsResponseBody extends $dara.Model { /** * @remarks * A list of media convert jobs. */ jobs?: MediaConvertJobWithoutDetail[]; /** * @remarks * The token to retrieve the next page of results. This value is empty when there are no more results to return. * * This parameter is required. * * @example * ****cdb3e74639973036bc84**** */ nextPageToken?: string; /** * @remarks * The request ID. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }