ChargingParkLocation

data class ChargingParkLocation(    val street: String?,     val houseNumber: String?,     val city: String?,     val postalCode: String?,     val countryCode: String?)

Describes the charging park location.

Important: This is a Public Preview API. It may be changed or removed at any time.

Parameters

street

The street name where the charging park is located.

houseNumber

The house number where the charging park is located.

city

The city in which the charging park is located.

postalCode

The postal code of the city in which the charging park is located.

countryCode

The country code where the charging park is located.

Constructors

Link copied to clipboard
fun ChargingParkLocation(    street: String?,     houseNumber: String?,     city: String?,     postalCode: String?,     countryCode: String?)

Properties

Link copied to clipboard
val city: String?
Link copied to clipboard
val countryCode: String?
Link copied to clipboard
val houseNumber: String?
Link copied to clipboard
val postalCode: String?
Link copied to clipboard
val street: String?