Package com.mappedin.sdk.models

Mappedin data models, named with a prefix MPI.

Types

Link copied to clipboard
enum MPIActionType : Enum<MPIActionType>

Possible action types of a specific MPIDirections.MPIInstruction

Link copied to clipboard
enum MPIBearingType : Enum<MPIBearingType>

Possible bearing types when the action of a MPIDirections.MPIInstruction is MPIActionType.TURN

Link copied to clipboard
class MPIBlueDot(    val position: MPIPosition,     val _map: String,     val _nearestNode: String)

MPIBlueDot represents a blue dot.

Link copied to clipboard
class MPIBlueDotPositionUpdate(    val position: MPIPosition,     val _map: String,     val _nearestNode: String,     val bearing: Double? = null)

MPIBlueDotPositionUpdate gives the current position update of the blue dot.

Link copied to clipboard
enum MPIBlueDotState : Enum<MPIBlueDotState>

MPIBlueDotState represents what we currently know about the user's position, and how confident we are.

Link copied to clipboard
class MPIBlueDotStateChange(    val internalName: Int,     val internalMarkerVisibility: Int? = null,     val internalReason: Int? = null,     val message: String? = null)

MPIBlueDotStateChange contains the reason for an unexpected blue dot state change

Link copied to clipboard
enum MPIBlueDotStateReason : Enum<MPIBlueDotStateReason>

MPIBlueDotStateReason contains the reason for an unexpected blue dot state

Link copied to clipboard
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.

Link copied to clipboard
data class MPIColor(    val hex: String,     val opacity: Double,     val rgba: String)

MPIColor represents the brand color of a MPINavigatable.MPILocation

Link copied to clipboard
class MPIData(    val venue: MPIVenue,     val maps: List<MPIMap>,     val polygons: List<MPINavigatable.MPIPolygon>,     val locations: List<MPINavigatable.MPILocation>,     val categories: List<MPICategory>,     val nodes: List<MPINavigatable.MPINode>,     val vortexes: List<MPINavigatable.MPIVortex>,     val mapGroups: List<MPIMapGroup>,     val rankings: MPIRankings? = null)

MPIData represents the data received when loading a specific venue. Venue is a specific place (example: a mall).

Link copied to clipboard
data class MPIDestinationSet(var destinations: List<MPINavigatable>)

MPIDestinationSet is list of MPINavigatable objects.

Link copied to clipboard
data class MPIDirections(    val distance: Double,     val path: List<MPINavigatable.MPINode>,     val instructions: List<MPIDirections.MPIInstruction>)

MPIDirections contains paths and instructions to go from a MPINavigatable object to another MPINavigatable object

Link copied to clipboard
data class MPIGalleryImage(val image: MPIImage, val caption: String? = null)

MPIGalleryImage represents a gallery image of MPINavigatable.MPILocation

Link copied to clipboard
data class MPIHeader(val name: String, val value: String)

Custom MPIHeaders can be used for requests when loading the venue

Link copied to clipboard
data class MPIImage(    val original: String? = null,     val large: String? = null,     val dimension140x140: String? = null,     val dimension66x66: String? = null,     val xxlarge: String? = null,     val xsmall: String? = null,     val xlarge: String? = null,     val medium: String? = null,     val xxsmall: String? = null,     val small: String? = null)

MPIImage represents the logo image of MPINavigatable.MPILocation

Link copied to clipboard
data class MPILocationState(    val type: String,     val start: String? = null,     val end: String? = null)
Link copied to clipboard
data class MPIMap(    val id: String,     val name: String,     val shortName: String,     val elevation: Double? = null,     val scale: Double? = null,     val x_scale: Double? = null,     val _group: String)

MPIMaps represents one of the maps associated with a venue.

Link copied to clipboard
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).

Link copied to clipboard
enum MPIMarkerState : Enum<MPIMarkerState>

MPIMarkerState represents the current state of the blue dot marker

Link copied to clipboard
sealed class MPINavigatable
Link copied to clipboard
data class MPIOfflineSearchMatch(    val matchesOn: String,     val term: String,     val value: String,     val weight: Float)
Link copied to clipboard
data class MPIOfflineSearchResultCategory(    val score: Float,     val type: String,     val matches: List<MPIOfflineSearchMatch>,     val category: MPICategory) : MPIOfflineSearchResultCommon
Link copied to clipboard
interface MPIOfflineSearchResultCommon
Link copied to clipboard
data class MPIOfflineSearchResultLocation(    val score: Float,     val type: String,     val matches: List<MPIOfflineSearchMatch>,     val location: MPINavigatable.MPILocation) : MPIOfflineSearchResultCommon
Link copied to clipboard
data class MPIOfflineSearchSuggestion(val text: String)
Link copied to clipboard
data class MPIOfflineSearchSuggestionResult(val payload: MPIOfflineSearchSuggestions)
Link copied to clipboard
data class MPIOfflineSearchSuggestions(val total: Int, val hits: List<MPIOfflineSearchSuggestion>)
Link copied to clipboard
data class MPIOpeningHours(    val type: String,     val opens: String,     val closes: String,     val dayOfWeek: List<String>)

MPIOpeningHours has the opening hours of the MPINavigatable.MPILocations.

Link copied to clipboard
data class MPIPathNode(val node: String, val map: String)

MPIPathNode contains the id of the node and the id of the map of the adjacent nodes of the MPINavigatable.MPINode

Link copied to clipboard
data class MPIPhone(val number: String? = null)

MPIPhone represents the phone of a MPINavigatable.MPILocation.

Link copied to clipboard
data class MPIPicture(val original: String? = null)

MPIPicture represents the images that depict a specific MPINavigatable.MPILocation

Link copied to clipboard
data class MPIPolygonRanking(    val polygonId: String,     val entranceNodeId: String? = null,     val score: Double)

MPIPolygonRanking represents the ranking of a MPINavigatable.MPIPolygon.

Link copied to clipboard
data class MPIPosition(    val timestamp: Double? = 0.0,     val coords: MPIPosition.MPICoordinates? = null,     val type: String = "",     val annotation: String? = null)

MPIPosition represents the geolocation of an object at a specific point in time

Link copied to clipboard
data class MPIRankings(val polygons: List<MPIPolygonRanking>)

MPIRankings represents the rankings data for a venue

Link copied to clipboard
data class MPISearchResultInternal(    val score: Float,     val type: String,     val matches: List<MPIOfflineSearchMatch>,     val _object: MPISearchResultObject)
Link copied to clipboard
data class MPISearchResultObject(val id: String)
Link copied to clipboard
data class MPISiblingGroup(val label: String, val siblings: List<String>)

MPISiblingGroup represents a group of related MPINavigatable.MPILocation

Link copied to clipboard
data class MPISocial(    val website: String? = null,     val twitter: String? = null,     val facebook: String? = null,     val instagram: String? = null)

MPISocial has different social media urls for a MPINavigatable.MPILocation.

Link copied to clipboard
enum MPIState : Enum<MPIState>

MPIState represents the state of a MPIMap.

Link copied to clipboard
data class MPITinyCoordinate(    val type: String? = null,     val mapId: String,     val lat: Double,     val lon: Double)

MPITinyCoordinate contains the mapId, type, lat & lon of a MPICoordinate object

Link copied to clipboard
data class MPITinyObject(val id: String, val type: String? = null)

MPITinyObject contains the id and type of a MPINavigatable object

Link copied to clipboard
data class MPIVenue(val name: String)

MPIVenue contains general information about a venue.

Link copied to clipboard
data class MPIVenueResponse(val data: String)

MPIVenueResponse contains a data string for a given venue.