FuelPriceDetails
data class FuelPriceDetails(val fuelType: FuelType, @Size(min = 1) val prices: List<Price>, val updatedAt: Date)
The price for a specified fuel.
Parameters
fuelType
The fuel name.
prices
The list of available prices for the fuel. Multiple prices can be provided if there are different currencies and/or different volume units.
updatedAt
The date and time when the fuel price was updated (in UTC).