/** * 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 ProfileMinutesQuota */ export interface ProfileMinutesQuota { /** * * @type {string} * @memberof ProfileMinutesQuota */ currentUsage?: string; /** * * @type {string} * @memberof ProfileMinutesQuota */ maximumLimit?: string | null; /** * * @type {Date} * @memberof ProfileMinutesQuota */ nextResetAt?: Date; } /** * Check if a given object implements the ProfileMinutesQuota interface. */ export declare function instanceOfProfileMinutesQuota(value: object): value is ProfileMinutesQuota; export declare function ProfileMinutesQuotaFromJSON(json: any): ProfileMinutesQuota; export declare function ProfileMinutesQuotaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProfileMinutesQuota; export declare function ProfileMinutesQuotaToJSON(json: any): ProfileMinutesQuota; export declare function ProfileMinutesQuotaToJSONTyped(value?: ProfileMinutesQuota | null, ignoreDiscriminator?: boolean): any;