@veeroute/lss-agro-angular
Version:
OpenAPI client for @veeroute/lss-agro-angular
39 lines (38 loc) • 936 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 { CostForecastElementAgro } from './costForecastElement';
import { AttributeAgro } from './attribute';
import { CapacityForecastElementAgro } from './capacityForecastElement';
/**
* A short-term storage.
*/
export interface StorageAgro {
[key: string]: any | any;
/**
* Key, unique identifier.
*/
key: string;
/**
* The type of short-term storage location.
*/
type: string;
/**
* Capacity forecast.
*/
capacity_forecast: Array<CapacityForecastElementAgro>;
/**
* Cost forecast.
*/
cost_forecast?: Array<CostForecastElementAgro>;
/**
* Attributes. Used to add service information.
*/
attributes?: Array<AttributeAgro>;
}