UNPKG

@kaltura-ng/kaltura-client

Version:
24 lines (23 loc) 902 B
import { KalturaObjectMetadata } from '../kaltura-object-base'; import { KalturaAttachmentServeOptions } from './KalturaAttachmentServeOptions'; import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; export interface AttachmentAssetServeActionArgs extends KalturaRequestArgs { attachmentAssetId: string; serveOptions?: KalturaAttachmentServeOptions; } /** * Build request payload for service 'attachmentAsset' action 'serve'. * * Usage: Serves attachment by its id * * Server response type: string * Server failure response type: KalturaAPIException * @class * @extends KalturaRequest */ export declare class AttachmentAssetServeAction extends KalturaRequest<string> { attachmentAssetId: string; serveOptions: KalturaAttachmentServeOptions; constructor(data: AttachmentAssetServeActionArgs); protected _getMetadata(): KalturaObjectMetadata; }