PoiCategory

data class PoiCategory(    val id: Long,     val name: String,     val children: List<PoiCategory>,     val synonyms: List<String>) : Parcelable

Describes the category returned by the POI Categories service.

Parameters

id

Unique ID of the category.

name

Name of the category.

children

List of child subcategories.

synonyms

List of alternative names of the category.

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

Constructors

Link copied to clipboard
fun PoiCategory(    id: Long,     name: String,     children: List<PoiCategory>,     synonyms: List<String>)

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard
val children: List<PoiCategory>
Link copied to clipboard
val id: Long
Link copied to clipboard
val name: String
Link copied to clipboard
val synonyms: List<String>