UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

21 lines (20 loc) 597 B
import StreamKeyConfigurationType from './StreamKeyConfigurationType'; /** * @export * @class StreamKeyConfiguration */ export declare class StreamKeyConfiguration { /** * @type {StreamKeyConfigurationType} * @memberof StreamKeyConfiguration */ type?: StreamKeyConfigurationType; /** * Id of the previously generated stream key. Only needed when the type is `ASSIGN`. * @type {string} * @memberof StreamKeyConfiguration */ streamKeyId?: string; constructor(obj?: Partial<StreamKeyConfiguration>); } export default StreamKeyConfiguration;