@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
33 lines (32 loc) • 964 B
TypeScript
/**
* @export
* @class StreamsDomainRestrictionResponse
*/
export declare class StreamsDomainRestrictionResponse {
/**
* The identifier of the streams domain restriction entity
* @type {string}
* @memberof StreamsDomainRestrictionResponse
*/
id?: string;
/**
* The list of allowed domains
* @type {string[]}
* @memberof StreamsDomainRestrictionResponse
*/
allowedDomains?: string[];
/**
* Controls if requests to domain restricted streams without referer header should be allowed or denied
* @type {boolean}
* @memberof StreamsDomainRestrictionResponse
*/
allowNoReferer?: boolean;
/**
* Controls if Stream is accessible via sharing URL or not
* @type {boolean}
* @memberof StreamsDomainRestrictionResponse
*/
allowShare?: boolean;
constructor(obj?: Partial<StreamsDomainRestrictionResponse>);
}
export default StreamsDomainRestrictionResponse;