@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
22 lines (21 loc) • 816 B
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaDeliveryProfile } from './KalturaDeliveryProfile';
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request';
export interface DeliveryProfileAddActionArgs extends KalturaRequestArgs {
delivery: KalturaDeliveryProfile;
}
/**
* Build request payload for service 'deliveryProfile' action 'add'.
*
* Usage: Add new delivery
*
* Server response type: KalturaDeliveryProfile
* Server failure response type: KalturaAPIException
* @class
* @extends KalturaRequest
*/
export declare class DeliveryProfileAddAction extends KalturaRequest<KalturaDeliveryProfile> {
delivery: KalturaDeliveryProfile;
constructor(data: DeliveryProfileAddActionArgs);
protected _getMetadata(): KalturaObjectMetadata;
}