/** * 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. */ import type { QuotaStatistics } from "./QuotaStatistics"; /** * * @export * @interface RunningProfilesStatistics */ export interface RunningProfilesStatistics { /** * Quota usage of the profiles that are running with an automation framework. * @type {QuotaStatistics} * @memberof RunningProfilesStatistics */ automated?: QuotaStatistics | null; /** * Quota usage of the profiles that are running manually (were started from GUI or API). * @type {QuotaStatistics} * @memberof RunningProfilesStatistics */ manual?: QuotaStatistics | null; /** * Quota usage of the profiles that are running either manually or with an automation framework. * @type {QuotaStatistics} * @memberof RunningProfilesStatistics */ total?: QuotaStatistics | null; } /** * Check if a given object implements the RunningProfilesStatistics interface. */ export declare function instanceOfRunningProfilesStatistics(value: object): value is RunningProfilesStatistics; export declare function RunningProfilesStatisticsFromJSON(json: any): RunningProfilesStatistics; export declare function RunningProfilesStatisticsFromJSONTyped(json: any, ignoreDiscriminator: boolean): RunningProfilesStatistics; export declare function RunningProfilesStatisticsToJSON(json: any): RunningProfilesStatistics; export declare function RunningProfilesStatisticsToJSONTyped(value?: RunningProfilesStatistics | null, ignoreDiscriminator?: boolean): any;