UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

41 lines (40 loc) 853 B
import Input from './Input'; import InputType from './InputType'; /** * @export * @class HttpInput */ export declare class HttpInput extends Input { /** * Discriminator property for Input * @type {string} * @memberof HttpInput */ readonly type: InputType; /** * Host Url or IP of the HTTP server (required) * @type {string} * @memberof HttpInput */ host?: string; /** * Basic Auth Username, if required * @type {string} * @memberof HttpInput */ username?: string; /** * Basic Auth Password, if required * @type {string} * @memberof HttpInput */ password?: string; /** * Custom Port * @type {number} * @memberof HttpInput */ port?: number; constructor(obj?: Partial<HttpInput>); } export default HttpInput;