MPIMapGroup

data class MPIMapGroup(id: String, name: String, maps: MutableList<MPIMap>)

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

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

Functions

component1
Link copied to clipboard
operator fun component1(): String
component2
Link copied to clipboard
operator fun component2(): String
component3
Link copied to clipboard
operator fun component3(): MutableList<MPIMap>
copy
Link copied to clipboard
fun copy(id: String, name: String, maps: MutableList<MPIMap> = mutableListOf()): MPIMapGroup
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

id
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.
maps
Link copied to clipboard
var maps: MutableList<MPIMap>
MPIMaps within the MPIMapGroup
name
Link copied to clipboard
val name: String
name of MPIMapGroup