FuelPriceDetails

data class FuelPriceDetails(val fuelType: FuelType, @Size(min = 1) val prices: List<Price>, val updatedAt: Date)

The price for a specific fuel type.

Constructors

Link copied to clipboard
constructor(fuelType: FuelType, @Size(min = 1) prices: List<Price>, updatedAt: Date)

Properties

Link copied to clipboard

The fuel name.

Link copied to clipboard

The list of available prices for the fuel. Multiple prices can be provided if there are different currencies and/or different volume units.

Link copied to clipboard

The date and time when the fuel price was updated (in UTC).