@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
35 lines (34 loc) • 876 B
TypeScript
import Input from './Input';
import InputType from './InputType';
/**
* @export
* @class AkamaiNetStorageInput
*/
export declare class AkamaiNetStorageInput extends Input {
/**
* Discriminator property for Input
* @type {string}
* @memberof AkamaiNetStorageInput
*/
readonly type: InputType;
/**
* Host to use for Akamai NetStorage transfers (required)
* @type {string}
* @memberof AkamaiNetStorageInput
*/
host?: string;
/**
* Your Akamai NetStorage Username (required)
* @type {string}
* @memberof AkamaiNetStorageInput
*/
username?: string;
/**
* Your Akamai NetStorage password (required)
* @type {string}
* @memberof AkamaiNetStorageInput
*/
password?: string;
constructor(obj?: Partial<AkamaiNetStorageInput>);
}
export default AkamaiNetStorageInput;