import * as $dara from '@darabonba/typescript'; export declare class SubmitCopyrightExtractJobShrinkRequest extends $dara.Model { /** * @remarks * The source video file from which to extract the watermark. * * > The OSS object or media asset must reside in the same region as the IMS service region. * * This parameter is required. */ inputShrink?: string; /** * @remarks * Additional parameters for the watermark job, provided as a JSON string. Supported parameter: * * * algoType: The algorithm type. Defaults to v1. The extraction algorithm must match the one used for embedding. * * * v1: Copyright watermark extraction algorithm for long videos. * * v2: Copyright watermark extraction algorithm for short videos. * * @example * {"algoType":"v2"} */ params?: string; /** * @remarks * The custom data, which can be up to 1,024 bytes in size. * * @example * 123 */ userData?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }