UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

40 lines (39 loc) 1.01 kB
import StreamsVideoStatus from './StreamsVideoStatus'; /** * @export * @class StreamsVideoUpdateRequest */ export declare class StreamsVideoUpdateRequest { /** * The new status of the stream * @type {StreamsVideoStatus} * @memberof StreamsVideoUpdateRequest */ status?: StreamsVideoStatus; /** * The new title of the stream * @type {string} * @memberof StreamsVideoUpdateRequest */ title?: string; /** * The new description of the stream * @type {string} * @memberof StreamsVideoUpdateRequest */ description?: string; /** * URL to hosted poster image * @type {string} * @memberof StreamsVideoUpdateRequest */ posterUrl?: string; /** * Id of the domain restriction config to use * @type {string} * @memberof StreamsVideoUpdateRequest */ domainRestrictionId?: string; constructor(obj?: Partial<StreamsVideoUpdateRequest>); } export default StreamsVideoUpdateRequest;