UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

33 lines (32 loc) 787 B
/** * @export * @class StreamsLiveUpdateRequest */ export declare class StreamsLiveUpdateRequest { /** * The new title of the stream * @type {string} * @memberof StreamsLiveUpdateRequest */ title?: string; /** * The new description of the stream * @type {string} * @memberof StreamsLiveUpdateRequest */ description?: string; /** * URL to hosted poster image * @type {string} * @memberof StreamsLiveUpdateRequest */ posterUrl?: string; /** * Id of the domain restriction config to use * @type {string} * @memberof StreamsLiveUpdateRequest */ domainRestrictionId?: string; constructor(obj?: Partial<StreamsLiveUpdateRequest>); } export default StreamsLiveUpdateRequest;