@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
42 lines • 1.92 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { KalturaCaptionAsset } from './KalturaCaptionAsset';
import { KalturaContentResource } from './KalturaContentResource';
import { KalturaRequest } from '../kaltura-request';
/**
* Build request payload for service 'captionAsset' action 'setContent'.
*
* Usage: Update content of caption asset
*
* Server response type: KalturaCaptionAsset
* Server failure response type: KalturaAPIException
* @class
* @extends KalturaRequest
*/
var CaptionAssetSetContentAction = (function (_super) {
__extends(CaptionAssetSetContentAction, _super);
function CaptionAssetSetContentAction(data) {
return _super.call(this, data, { responseType: 'o', responseSubType: 'KalturaCaptionAsset', responseConstructor: KalturaCaptionAsset }) || this;
}
CaptionAssetSetContentAction.prototype._getMetadata = function () {
var result = _super.prototype._getMetadata.call(this);
Object.assign(result.properties, {
service: { type: 'c', default: 'caption_captionasset' },
action: { type: 'c', default: 'setContent' },
id: { type: 's' },
contentResource: { type: 'o', subTypeConstructor: KalturaContentResource, subType: 'KalturaContentResource' }
});
return result;
};
return CaptionAssetSetContentAction;
}(KalturaRequest));
export { CaptionAssetSetContentAction };
//# sourceMappingURL=CaptionAssetSetContentAction.js.map