/** * @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); } export default StreamsLiveUpdateRequest;