/**
 * VRt.Account [AC]
 *
 * The version of the OpenAPI document: 7.18.2755
 * Contact: servicedesk@veeroute.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * Do not edit the class manually.
 */
import { ProcessTypeAccount } from './processType';
/**
 * Usage statistics of the service method.
 */
export interface ProcessStatisticsAccount {
    [key: string]: any | any;
    process_type: ProcessTypeAccount;
    /**
     * Unique points per day.
     */
    unique_points_per_day: number;
    /**
     * Non-unique points per day.
     */
    points_per_day: number;
    /**
     * Non-unique elements of the result per day.
     */
    elements_per_day: number;
    /**
     * Total number of processes per day.
     */
    processes_per_day: number;
}
