@veeroute/lss-agro-angular
Version:
OpenAPI client for @veeroute/lss-agro-angular
43 lines (42 loc) • 1.06 kB
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 { CostForecastElementAgro } from './costForecastElement';
import { AttributeAgro } from './attribute';
import { CapacityForecastElementAgro } from './capacityForecastElement';
/**
* Grain process.
*/
export interface GateAgro {
[key: string]: any | any;
/**
* Key, unique identifier.
*/
key: string;
/**
* Capacity forecast.
*/
input_capacity_forecast: Array<CapacityForecastElementAgro>;
/**
* Cost forecast.
*/
input_cost_forecast?: Array<CostForecastElementAgro>;
/**
* Capacity forecast.
*/
output_capacity_forecast: Array<CapacityForecastElementAgro>;
/**
* Cost forecast.
*/
output_cost_forecast?: Array<CostForecastElementAgro>;
/**
* Attributes. Used to add service information.
*/
attributes?: Array<AttributeAgro>;
}