import * as $dara from '@darabonba/typescript'; export declare class SubmitCopyrightJobResponseBodyData extends $dara.Model { /** * @remarks * The job ID. * * @example * bfb786c63****f4d80648792021eff90 */ jobId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SubmitCopyrightJobResponseBody extends $dara.Model { /** * @remarks * The data returned. */ data?: SubmitCopyrightJobResponseBodyData; /** * @remarks * The message returned. * * @example * ok */ message?: string; /** * @remarks * The ID of the request. * * @example * FA258E67-09B8-4EAA-8F33-BA567834A2C3 */ requestId?: string; /** * @remarks * The status code. * * @example * 200 */ statusCode?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }