PoiCategory

data class PoiCategory(val id: CategoryId, val name: String, val parents: Set<CategoryId> = emptySet(), val children: Set<CategoryId> = emptySet(), val synonyms: List<String> = emptyList())

Point of Interest(POI) category.

Constructors

Link copied to clipboard
fun PoiCategory(id: CategoryId, name: String, parents: Set<CategoryId> = emptySet(), children: Set<CategoryId> = emptySet(), synonyms: List<String> = emptyList())

Properties

Link copied to clipboard

The list of sub-category ids of the POI category.

Link copied to clipboard

The identifier for the POI category.

Link copied to clipboard

The name of the POI category.

Link copied to clipboard

The list of parent ids of the POI category.

Link copied to clipboard

The synonyms for the POI category.