@veeroute/lss-agro-angular
Version:
OpenAPI client for @veeroute/lss-agro-angular
42 lines (41 loc) • 970 B
TypeScript
/**
* 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 { 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;
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>;
}