UNPKG

@veeroute/lss-agro-angular

Version:

OpenAPI client for @veeroute/lss-agro-angular

37 lines (36 loc) 807 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 { AttributeAgro } from './attribute'; /** * A crop. */ export interface CropAgro { [key: string]: any | any; /** * Key, unique identifier. */ key: string; /** * Humidity crop, in ppm (‰). */ base_humidity: number; /** * List of compatible short-term storage types. */ compatible_storage_types?: Array<string>; /** * List of compatible long-term storage types. */ compatible_silo_types?: Array<string>; /** * Attributes. Used to add service information. */ attributes?: Array<AttributeAgro>; }