UNPKG

@veeroute/lss-agro-angular

Version:

OpenAPI client for @veeroute/lss-agro-angular

45 lines (44 loc) 1.04 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 { ObjectTypeAgro } from './objectType'; import { AttributeAgro } from './attribute'; import { CropTypeAgro } from './cropType'; /** * Operation target. */ export interface OperationTargetAgro { [key: string]: any | any; /** * Date in the YYYY-MM-DD format. */ date: string; /** * Target key. */ target_key: string; target_type: ObjectTypeAgro; /** * The key of the object part, if it exists for this operation - [more](#section/Description/Project). */ target_detail_key?: string | null; crop_type: CropTypeAgro; /** * Humidity crop, in ppm (‰). */ humidity: number; /** * Weight, in tn. */ mass: number; /** * Attributes. Used to add service information. */ attributes?: Array<AttributeAgro>; }