FuelPrice

data class FuelPrice(val name: FuelName, @Size(min = 1) val prices: List<Price>, val updatedAt: Date)

The price for a specified fuel.

Parameters

name

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).

Constructors

Link copied to clipboard
fun FuelPrice(name: FuelName, @Size(min = 1) prices: List<Price>, updatedAt: Date)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard