/** * 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 CloudTrafficQuota */ export interface CloudTrafficQuota { /** * Transferred data in bytes within the current period. * @type {number} * @memberof CloudTrafficQuota */ currentUsage?: number; /** * Allowed data limit in bytes for the current period. A null value indicates an unlimited quota. * @type {number} * @memberof CloudTrafficQuota */ maximumLimit?: number | null; /** * Timestamp indicating when the current usage will reset to zero. * @type {Date} * @memberof CloudTrafficQuota */ nextResetAt?: Date; } /** * Check if a given object implements the CloudTrafficQuota interface. */ export declare function instanceOfCloudTrafficQuota(value: object): value is CloudTrafficQuota; export declare function CloudTrafficQuotaFromJSON(json: any): CloudTrafficQuota; export declare function CloudTrafficQuotaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CloudTrafficQuota; export declare function CloudTrafficQuotaToJSON(json: any): CloudTrafficQuota; export declare function CloudTrafficQuotaToJSONTyped(value?: CloudTrafficQuota | null, ignoreDiscriminator?: boolean): any;