import * as $dara from '@darabonba/typescript'; import { VodPackagingAsset } from "./VodPackagingAsset"; export declare class BatchCreateVodPackagingAssetResponseBodyResultList extends $dara.Model { /** * @remarks * The information about the ingested asset. */ asset?: VodPackagingAsset; /** * @remarks * The error code for failed ingestion. * * @example * InvalidParameter.PackagingAssetAlreadyExists */ code?: string; /** * @remarks * The error message for failed ingestion. * * @example * The specified packagingAsset "inputMovie" already exists */ message?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class BatchCreateVodPackagingAssetResponseBody extends $dara.Model { /** * @remarks * The name of the packaging group. * * @example * vod_hls */ groupName?: string; /** * @remarks * The ID of the request. * * @example * ******3B-0E1A-586A-AC29-742247****** */ requestId?: string; /** * @remarks * The results of asset ingestion. */ resultList?: BatchCreateVodPackagingAssetResponseBodyResultList[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }