@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
21 lines (20 loc) • 491 B
TypeScript
import AclPermission from './AclPermission';
/**
* @export
* @class AclEntry
*/
export declare class AclEntry {
/**
* Deprecation notice: The value of this property is not being used. It can be chosen arbitrarily or not set at all
* @type {string}
* @memberof AclEntry
*/
scope?: string;
/**
* @type {AclPermission}
* @memberof AclEntry
*/
permission?: AclPermission;
constructor(obj?: Partial<AclEntry>);
}
export default AclEntry;