MPICategory

data class MPICategory(    val name: String,     val id: String,     val externalId: String? = null,     val parents: List<String> = emptyList<String>(),     val icon: String? = null)

MPIMaps represents one of the maps associated with a venue.

  • Example: map of the first floor at a given venue

Constructors

Link copied to clipboard
fun MPICategory(    name: String,     id: String,     externalId: String? = null,     parents: List<String> = emptyList<String>(),     icon: String? = null)

Properties

Link copied to clipboard
val externalId: String? = null

The external ID of this category.

Link copied to clipboard
val icon: String? = null

The URL of the icon of this category.

Link copied to clipboard
val id: String

The id of this category.

Link copied to clipboard
val name: String

The name of this category.

Link copied to clipboard
val parents: List<String>

The IDs of this category's parents.