MPICategory

@Serializable
data class MPICategory(val name: String, val id: String, val externalId: String? = null, val parents: List<String> = emptyList<String>(), val icon: MPIPicture? = null, val iconFromDefaultList: String? = null, val extra: 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
constructor(name: String, id: String, externalId: String? = null, parents: List<String> = emptyList<String>(), icon: MPIPicture? = null, iconFromDefaultList: String? = null, extra: String? = null)

Properties

Link copied to clipboard
val externalId: String? = null

The external ID of this category.

Link copied to clipboard
val extra: String? = null

Contains a JSON string with extra properties of the category.

Link copied to clipboard
val icon: MPIPicture? = null

The icons for this category.

Link copied to clipboard

The name of the default icon.

Link copied to clipboard
val id: String

The id of this category.

Link copied to clipboard

The name of this category.

Link copied to clipboard

The IDs of this category's parents.