MPIMapGroup

data class MPIMapGroup(    val id: String,     val name: String,     var maps: MutableList<MPIMap> = mutableListOf())

MPIMapGroup represents a collection of maps (different floors of a single building).

  • Note: All MPIMaps will be in a MPIMapGroup. If your venue is a single building, you can ignore map groups.

Constructors

Link copied to clipboard
fun MPIMapGroup(    id: String,     name: String,     maps: MutableList<MPIMap> = mutableListOf())

Properties

Link copied to clipboard
val id: String

This id can be used for the lifetime of the data you get back, but it may not be present in future calls. id of the MPIMapGroup

Link copied to clipboard
var maps: MutableList<MPIMap>

MPIMaps within the MPIMapGroup

Link copied to clipboard
val name: String

name of MPIMapGroup