UNPKG

@veeroute/lss-agro-angular

Version:

OpenAPI client for @veeroute/lss-agro-angular

30 lines (29 loc) 778 B
/** * 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 { CapacityForecastElementAgro } from './capacityForecastElement'; import { PriceForecastElementAgro } from './priceForecastElement'; /** * Price forecast for a particular crop. */ export interface PricelistAgro { [key: string]: any | any; /** * Target key. */ crop_key: string; /** * Prices tied to the dates at which the market uys\\sells the specified crop. */ price_forecast: Array<PriceForecastElementAgro>; /** * Capacity forecast. */ capacity_forecast?: Array<CapacityForecastElementAgro>; }