UNPKG

@veeroute/lss-agro-angular

Version:

OpenAPI client for @veeroute/lss-agro-angular

45 lines (44 loc) 1.1 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 { BunkerAgro } from './bunker'; import { AttributeAgro } from './attribute'; import { ConsumerAgro } from './consumer'; import { GateAgro } from './gate'; import { DryerAgro } from './dryer'; /** * A production facility. */ export interface FactoryAgro { [key: string]: any | any; /** * Key, unique identifier. */ key: string; /** * The gates and weighing station ensure the process of receiving and unloading grain. */ gate: GateAgro; /** * List of dryers. */ dryers?: Array<DryerAgro>; /** * List of bunkers - places for storing grain and a source for consumption. */ bunkers: Array<BunkerAgro>; /** * List of consumers who process grain. */ consumers: Array<ConsumerAgro>; /** * Attributes. Used to add service information. */ attributes?: Array<AttributeAgro>; }