import * as $dara from '@darabonba/typescript'; export declare class CreateVodPackagingAssetRequestInput extends $dara.Model { /** * @remarks * The URL of the media file. Only M3U8 files stored in OSS are supported. */ media?: string; /** * @remarks * The input type. Only Object Storage Service (OSS) is supported. * * @example * OSS */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateVodPackagingAssetRequest 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. */ input?: CreateVodPackagingAssetRequestInput; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }