/**
 * 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 { HttpHeaders } from '@angular/common/http';
import { Observable } from 'rxjs';
import { QuotasResultAccount } from '../model/models';
import { Configuration } from '../configuration';
export interface QuotaServiceInterface {
    defaultHeaders: HttpHeaders;
    configuration: Configuration;
    /**
     * Obtaining the quotas
     * Obtaining the quotas for the user.
*/
    readQuota(extraHttpRequestParams?: any): Observable<QuotasResultAccount>;
}
