/**
 * 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';
/**
 * Quota for the service process type.  If any of the quotas are exceeded, the request is not returned with the quota exceeded error.
 */
export interface ProcessQuotaAccount {
    [key: string]: any | any;
    process_type: ProcessTypeAccount;
    /**
     * Maximum number of non-unique points per request.
     */
    points_per_request: number;
    /**
     * Maximum number of non-unique points per request per day.
     */
    points_per_day: number;
    /**
     * The maximum total number of concurrent process execution. The parameter is limited above by the maximum value for a specific environment.
     */
    max_concurrent_execution: number;
}
