UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

12 lines 536 B
/** Get shared account quota usage in total available space */ export interface SharedAccountQuota { /** total amount of space in MB for shared accounts within organization */ quotaLimit: number; /** space in MB already reserved from the quota limit */ quotaReserved: number; /** currently used space in KB within all shared accounts */ quotaUsed: number; /** amount of space in MB available for single shared account */ singleMailboxQuotaLimit: number; } //# sourceMappingURL=SharedAccountQuota.d.ts.map