UNPKG

@veeroute/lss-agro-angular

Version:

OpenAPI client for @veeroute/lss-agro-angular

45 lines (44 loc) 1.07 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 { StorageAgro } from './storage'; import { AttributeAgro } from './attribute'; import { SiloAgro } from './silo'; import { GateAgro } from './gate'; import { DryerAgro } from './dryer'; /** * A production facility. */ export interface ElevatorAgro { [key: string]: any | any; /** * Key, unique identifier. */ key: string; /** * Gates and weighing, provide the process of acceptance and shipment of grain. */ gate: GateAgro; /** * List of dryers. */ dryers?: Array<DryerAgro>; /** * List of places for short-term storage of grain. */ storages?: Array<StorageAgro>; /** * List of places for long-term storage of grain. */ silos?: Array<SiloAgro>; /** * Attributes. Used to add service information. */ attributes?: Array<AttributeAgro>; }