/** * kameleo-local-api * You can use the following API endpoints to communicate with the local running Kameleo programmatically. * * The version of the OpenAPI document: 4.4.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface QuotaStatistics */ export interface QuotaStatistics { /** * Indicates the current usage, always a non-negative value. * @type {number} * @memberof QuotaStatistics */ readonly currentUsage: number; /** * Indicates the maximum permitted value, with -1 implying no limit. * @type {number} * @memberof QuotaStatistics */ readonly maximumLimit: number; } /** * Check if a given object implements the QuotaStatistics interface. */ export declare function instanceOfQuotaStatistics(value: object): value is QuotaStatistics; export declare function QuotaStatisticsFromJSON(json: any): QuotaStatistics; export declare function QuotaStatisticsFromJSONTyped(json: any, ignoreDiscriminator: boolean): QuotaStatistics; export declare function QuotaStatisticsToJSON(json: any): QuotaStatistics; export declare function QuotaStatisticsToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;