UNPKG

@veeroute/lss-agro-angular

Version:

OpenAPI client for @veeroute/lss-agro-angular

57 lines (56 loc) 1.59 kB
/** * 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 { LeftoverAgro } from './leftover'; import { MovementMatrixElementAgro } from './movementMatrixElement'; import { ElevatorAgro } from './elevator'; import { PlanSettingsAgro } from './planSettings'; import { CropAgro } from './crop'; import { FactoryAgro } from './factory'; import { MarketAgro } from './market'; import { FieldAgro } from './field'; /** * Initial task. */ export interface PlanTaskAgro { [key: string]: any | any; /** * List of crops. */ crops: Array<CropAgro>; /** * List of fields. */ fields: Array<FieldAgro>; /** * List of elevators. */ elevators?: Array<ElevatorAgro>; /** * List of factories. */ factories: Array<FactoryAgro>; /** * List of markets. */ markets: Array<MarketAgro>; /** * Matrix describing the cost (in kilometers and monetary units) of moving grain between objects (in both directions). If there is no corresponding entry in the matrix between the objects, the movement of grain between them is considered impossible. */ movement_matrix: Array<MovementMatrixElementAgro>; /** * List of leftovers. */ leftovers?: Array<LeftoverAgro>; plan_settings: PlanSettingsAgro; /** * The name of the dataset. A technical field that does not affect calculation. */ dataset_name?: string; }