MPIMap Group
data class MPIMapGroup( val id: String, val name: String, var maps: MutableList<MPIMap> = mutableListOf())
Content copied to clipboard
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())
Content copied to clipboard
Properties
Link copied to clipboard
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
Link copied to clipboard