import * as $dara from '@darabonba/typescript'; export declare class GetVodPackagingAssetResponseBodyAssetEgressEndpoints extends $dara.Model { /** * @remarks * The name of the packaging configuration. * * @example * hls_3s */ configurationName?: string; /** * @remarks * The asset status. Valid values: * * * Queuing: The asset is waiting for packaging. * * Playable: The asset is packaged and playable. * * Failed: The asset fails to be packaged. * * @example * Playable */ status?: string; /** * @remarks * The playback URL. If the asset fails to be packaged, no playback URL is returned. */ url?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetVodPackagingAssetResponseBodyAssetInput 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 GetVodPackagingAssetResponseBodyAsset extends $dara.Model { /** * @remarks * The name of the asset. * * @example * 30min_movie */ assetName?: string; /** * @remarks * The content ID in the DRM system. The maximum length is 256 characters. Letters, digits, underscores (_), and hyphens (-) are supported. * * @example * movie */ contentId?: string; /** * @remarks * The time when the asset was created. It follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC. * * @example * 2024-11-21T06:45:32Z */ createTime?: string; /** * @remarks * The egress endpoints, each corresponding to a packaging configuration. */ egressEndpoints?: GetVodPackagingAssetResponseBodyAssetEgressEndpoints[]; /** * @remarks * The name of the packaging group. * * @example * vod_hls */ groupName?: string; /** * @remarks * The asset input configurations. */ input?: GetVodPackagingAssetResponseBodyAssetInput; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetVodPackagingAssetResponseBody extends $dara.Model { /** * @remarks * The information about the asset. */ asset?: GetVodPackagingAssetResponseBodyAsset; /** * @remarks * The ID of the request. * * @example * 0622C702-41BE-467E-AF2E-883D4517962E */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }