UNPKG

@veeroute/lss-agro-angular

Version:

OpenAPI client for @veeroute/lss-agro-angular

35 lines (34 loc) 938 B
/** * VRt.Agro [AG] * * The version of the OpenAPI document: 7.33.3222 * Contact: support@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator. * Do not edit the class manually. */ import { ProductivityForecastElementAgro } from './productivityForecastElement'; import { CostForecastElementAgro } from './costForecastElement'; import { CapacityForecastElementAgro } from './capacityForecastElement'; /** * Drying chamber - determines the parameters of the drying process of crops. */ export interface ChamberAgro { [key: string]: any | any; /** * Target key. */ crop_key: string; /** * Capacity forecast. */ capacity_forecast: Array<CapacityForecastElementAgro>; /** * Productivity forecast. */ productivity_forecast: Array<ProductivityForecastElementAgro>; /** * Cost forecast. */ cost_forecast?: Array<CostForecastElementAgro>; }