UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

35 lines (34 loc) 891 B
import Output from './Output'; import OutputType from './OutputType'; /** * @export * @class AkamaiNetStorageOutput */ export declare class AkamaiNetStorageOutput extends Output { /** * Discriminator property for Output * @type {string} * @memberof AkamaiNetStorageOutput */ readonly type: OutputType; /** * Host to use for Akamai NetStorage transfers (required) * @type {string} * @memberof AkamaiNetStorageOutput */ host?: string; /** * Your Akamai NetStorage Username (required) * @type {string} * @memberof AkamaiNetStorageOutput */ username?: string; /** * Your Akamai NetStorage password (required) * @type {string} * @memberof AkamaiNetStorageOutput */ password?: string; constructor(obj?: Partial<AkamaiNetStorageOutput>); } export default AkamaiNetStorageOutput;