import * as $dara from '@darabonba/typescript'; export declare class CreateVodPackagingAssetShrinkRequest extends $dara.Model { /** * @remarks * The name of the asset. The name must be unique and can be up to 128 characters in length. Letters, digits, underscores (_), and hyphens (-) are supported. * * @example * hls_3s */ assetName?: string; /** * @remarks * The content ID in the digital rights management (DRM) system. The maximum length is 256 characters. Letters, digits, underscores (_), and hyphens (-) are supported. * * @example * movie */ contentId?: string; /** * @remarks * The asset description. * * @example * HLS 3 second packaging */ description?: string; /** * @remarks * The name of the packaging group. * * @example * vod_hls */ groupName?: string; /** * @remarks * The asset input configurations. */ inputShrink?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }