UNPKG

@veeroute/lss-agro-angular

Version:

OpenAPI client for @veeroute/lss-agro-angular

47 lines (46 loc) 1.15 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 { CostForecastElementAgro } from './costForecastElement'; import { AttributeAgro } from './attribute'; import { CapacityForecastElementAgro } from './capacityForecastElement'; /** * A long-term storage. */ export interface SiloAgro { [key: string]: any | any; /** * Key, unique identifier. */ key: string; /** * The type of long-term storage location. */ type: string; /** * Capacity forecast. */ capacity_forecast: Array<CapacityForecastElementAgro>; /** * Cost forecast. */ cost_forecast?: Array<CostForecastElementAgro>; /** * The total cost of deployment, in conventional monetary units. */ deployment_cost?: number; /** * The total cost of collapse, in conventional monetary units. */ collapse_cost?: number; /** * Attributes. Used to add service information. */ attributes?: Array<AttributeAgro>; }