/** * @export * @class StreamsDomainRestrictionUpdateRequest */ export declare class StreamsDomainRestrictionUpdateRequest { /** * The list of allowed domains * @type {string[]} * @memberof StreamsDomainRestrictionUpdateRequest */ allowedDomains?: string[]; /** * Controls if requests to domain restricted streams without referer header should be allowed or denied * @type {boolean} * @memberof StreamsDomainRestrictionUpdateRequest */ allowNoReferer?: boolean; /** * Controls if Stream is accessible via sharing URL or not * @type {boolean} * @memberof StreamsDomainRestrictionUpdateRequest */ allowShare?: boolean; constructor(obj?: Partial); } export default StreamsDomainRestrictionUpdateRequest;