Type Alias Quota

type Quota = {
    attributes: {
        quota: number;
        unit: string;
        usage?: number;
        warningThresholds?: number[];
    };
    id: string;
    type: string;
}
Index

Properties

Properties

attributes: {
    quota: number;
    unit: string;
    usage?: number;
    warningThresholds?: number[];
}

The attributes of the quota.

Type Declaration

  • quota: number

    The quota limit. If there is no quota limit, -1 is returned.

  • unit: string
  • Optionalusage?: number
  • OptionalwarningThresholds?: number[]
id: string
type: string