Interface IQuotas

interface IQuotas {
    attributes: {
        quota: number;
        unit: string;
        usage: number;
        warningThresholds: number[];
    };
    id: string;
    type: string;
}

Properties

Properties

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

Type declaration

  • quota: number
  • unit: string
  • usage: number
  • warningThresholds: number[]
id: string
type: string