PointOfInterest

@Serializable(with = PointOfInterestSerializer::class)
data class PointOfInterest : IStringConvertibleCompact

Constructors

Link copied to clipboard
constructor(name: String, coordinate: Coordinate, type: PointOfInterestType = PointOfInterestType.CATEGORY, description: String? = null, address: String? = null, imageURL: String? = null, tags: List<String> = emptyList(), mediaThumbnailURL: String? = null, mediaURL: String? = null, mediaType: String? = null, customerID: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard

Coordinate of the point of interest.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val id: Int

Unique identifier of the point of interest.

Link copied to clipboard

URL of the image representing the point of interest. Used for POI of type PointOfInterestType.CATEGORY.

Link copied to clipboard

URL of the thumbnail image representing the point of interest. Used for POI of type PointOfInterestType.VIDEO.

Link copied to clipboard
Link copied to clipboard

URL of the media representing the point of interest. Used for POI of type PointOfInterestType.PICTURE.

Link copied to clipboard

Name of the point of interest.

Link copied to clipboard
Link copied to clipboard

Type of the point of interest.

Functions

Link copied to clipboard
open override fun toStringCompact(): String