@veeroute/lss-agro-angular
Version:
OpenAPI client for @veeroute/lss-agro-angular
38 lines (37 loc) • 1.32 kB
TypeScript
/**
* VRt.Agro [AG]
*
* 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 { TracedataAgro } from './tracedata';
import { UnplannedItemsAgro } from './unplannedItems';
import { PlanStatisticsAgro } from './planStatistics';
import { ManufacturingOperationAgro } from './manufacturingOperation';
import { EntityWarningAgro } from './entityWarning';
import { CalculationInfoAgro } from './calculationInfo';
/**
* Planning result.
*/
export interface PlanResultAgro {
[key: string]: any | any;
tracedata: TracedataAgro;
/**
* Production plan. The sequence of work.
*/
project: Array<ManufacturingOperationAgro>;
statistics: PlanStatisticsAgro;
/**
* List of warnings. Depending on the flag `calculation_settings.treat_warnings_as_errors` - triggered checks are interpreted as errors or result in the removal of incorrect data from the calculation.
*/
warnings?: Array<EntityWarningAgro>;
unplanned_items?: UnplannedItemsAgro;
/**
* Calculation progress as a percentage. The progress displays the current number of completed steps.
*/
calculation_progress: number;
calculation_info: CalculationInfoAgro;
}