UNPKG

@veeroute/lss-agro-angular

Version:

OpenAPI client for @veeroute/lss-agro-angular

35 lines (34 loc) 837 B
/** * 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 bunker. */ export interface BunkerAgro { [key: string]: any | any; /** * Key, unique identifier. */ key: string; /** * Capacity forecast. */ capacity_forecast: Array<CapacityForecastElementAgro>; /** * Cost forecast. */ cost_forecast?: Array<CostForecastElementAgro>; /** * Attributes. Used to add service information. */ attributes?: Array<AttributeAgro>; }