UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

39 lines (38 loc) 1.03 kB
import StreamsStyleConfigPlayerStyle from './StreamsStyleConfigPlayerStyle'; /** * @export * @class StreamsStyleConfigResponse */ export declare class StreamsStyleConfigResponse { /** * The identifier of the style config * @type {string} * @memberof StreamsStyleConfigResponse */ id?: string; /** * UUID of the associated organization * @type {string} * @memberof StreamsStyleConfigResponse */ orgId?: string; /** * @type {StreamsStyleConfigPlayerStyle} * @memberof StreamsStyleConfigResponse */ playerStyle?: StreamsStyleConfigPlayerStyle; /** * URL of the watermark image * @type {string} * @memberof StreamsStyleConfigResponse */ watermarkUrl?: string; /** * Target link of the watermark image * @type {string} * @memberof StreamsStyleConfigResponse */ watermarkTargetLink?: string; constructor(obj?: Partial<StreamsStyleConfigResponse>); } export default StreamsStyleConfigResponse;