interface Quotum {
    description: string;
    limit?: number;
    name: string;
    prettyName: string;
    unit: string;
    unlimited?: boolean;
}

Properties

description: string

Details about the quota.

limit?: number

Maximum limit of the quota.

One-of ('value'): at most one of 'limit', 'unlimited' could be set.

name: string

Name of the quota.

prettyName: string

A human-readable name for the quota.

unit: string

The unit in which the quota is expressed.

unlimited?: boolean

Defines whether or not the quota is unlimited.

One-of ('value'): at most one of 'limit', 'unlimited' could be set.