UNPKG

@veeroute/lss-agro-angular

Version:

OpenAPI client for @veeroute/lss-agro-angular

43 lines (42 loc) 1.17 kB
/** * 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 { AttributeAgro } from './attribute'; import { CapacityForecastElementAgro } from './capacityForecastElement'; import { HumidityForecastElementAgro } from './humidityForecastElement'; /** * The field is a producer of grain. */ export interface FieldAgro { [key: string]: any | any; /** * Key, unique identifier. */ key: string; /** * Crop key. */ crop_key: string; /** * The total amount of grain (in tons) to be harvested from the field. */ amount: number; /** * Capacity forecast. */ capacity_forecast: Array<CapacityForecastElementAgro>; /** * Forecast on grain humidity in the field. If the humidity for a specific day is not specified, then the base crop humidity is used for this. */ humidity_forecast?: Array<HumidityForecastElementAgro>; /** * Attributes. Used to add service information. */ attributes?: Array<AttributeAgro>; }