@veeroute/lss-universal-angular
Version:
OpenAPI client for @veeroute/lss-universal-angular
23 lines (22 loc) • 1.33 kB
TypeScript
/**
* VRt.Universal [UV]
*
* The version of the OpenAPI document: 7.23.2926
* Contact: servicedesk@veeroute.com
*
* NOTE: This class is auto generated by OpenAPI Generator.
* Do not edit the class manually.
*/
/**
* Calculation status: * `WAITING` - the calculation is waiting to be launched. * `IN_PROGRESS` - calculation in progress. * `FINISHED_IN_TIME` - the calculation completed correctly before the specified maximum time. * `FINISHED_OUT_OF_TIME` - the calculation ended because the specified time for calculation has expired, which can affect the quality of the result for the worse. * `CANCELED` - the calculation was canceled because a cancel command was received. * `CANCELED_BY_TIMEOUT` - the calculation was canceled automatically because the waiting time in the queue was exceeded. * `CANCELED_BY_QUOTA` - the calculation was canceled because the quota for this calculation type was exceeded. * `FAILED` - calculation completed with an error.
*/
export declare enum CalculationStatusUniversal {
WAITING = "WAITING",
IN_PROGRESS = "IN_PROGRESS",
FINISHED_IN_TIME = "FINISHED_IN_TIME",
FINISHED_OUT_OF_TIME = "FINISHED_OUT_OF_TIME",
CANCELED = "CANCELED",
CANCELED_BY_TIMEOUT = "CANCELED_BY_TIMEOUT",
CANCELED_BY_QUOTA = "CANCELED_BY_QUOTA",
FAILED = "FAILED"
}