UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

25 lines (24 loc) 605 B
/** * @export * @class ResourceLimit */ export declare class ResourceLimit { /** * @type {string} * @memberof ResourceLimit */ name?: string; /** * @type {string} * @memberof ResourceLimit */ value?: string; /** * Specifies the remaining limit value for limits divided to sub-organizations. This property is returned only for parent organizations and only for mentioned limits. * @type {string} * @memberof ResourceLimit */ effectiveValue?: string; constructor(obj?: Partial<ResourceLimit>); } export default ResourceLimit;