CoordinatesWithMarketDomain

data class CoordinatesWithMarketDomain(val latitude: Double, val longitude: Double, val marketDomain: TMMarketDomain?) : Coordinates

Represents geographic coordinates with an associated market domain.

Parameters

latitude

The latitude of the geographic location.

longitude

The longitude of the geographic location.

marketDomain

The TMMarketDomain associated with the coordinates, or null if not specified.

Constructors

Link copied to clipboard
constructor(latitude: Double, longitude: Double, marketDomain: TMMarketDomain?)

Properties

Link copied to clipboard
@SerializedName(value = "latitude")
open override val latitude: Double
Link copied to clipboard
@SerializedName(value = "longitude")
open override val longitude: Double
Link copied to clipboard
val marketDomain: TMMarketDomain?