/** * Veeroute.Delivery * Veeroute Delivery API * * The version of the OpenAPI document: 3.15.183137 * Contact: support@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { HttpHeaders } from '@angular/common/http'; import { Observable } from 'rxjs'; import { AnalyticsTaskDelivery } from '../model/models'; import { Configuration } from '../configuration'; export interface AnalyticsRequestParams { analyticsTaskDelivery: AnalyticsTaskDelivery; } export interface AnalyticsServiceInterface { defaultHeaders: HttpHeaders; configuration: Configuration; /** * Planning result analytics. * Used for [analytics]()https://docs.veeroute.com/#/lss/analytics) according to the planning result. * @param requestParameters */ analytics(requestParameters: AnalyticsRequestParams, extraHttpRequestParams?: any): Observable; }