import * as $dara from '@darabonba/typescript'; export declare class BatchCreateVodPackagingAssetRequestAssetsInput extends $dara.Model { /** * @remarks * The URL of the media file. You can only specify a M3U8 file stored in Object Storage Service (OSS). */ media?: string; /** * @remarks * The input type. Only 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 BatchCreateVodPackagingAssetRequestAssets 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 * 30min_movie */ 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 input configurations. */ input?: BatchCreateVodPackagingAssetRequestAssetsInput; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class BatchCreateVodPackagingAssetRequest extends $dara.Model { /** * @remarks * The assets that you want to ingest. */ assets?: BatchCreateVodPackagingAssetRequestAssets[]; /** * @remarks * The name of the packaging group. * * @example * vod_hls */ groupName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }