UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

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