UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

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