MapLoadingErrorEventData

The data class for Map Loading Error event data in Observer

data class MapLoadingErrorEventData(type: MapLoadErrorType, message: String)

Constructors

MapLoadingErrorEventData
Link copied to clipboard
fun MapLoadingErrorEventData(type: MapLoadErrorType, message: String)

Functions

component1
Link copied to clipboard
operator fun component1(): MapLoadErrorType
component2
Link copied to clipboard
operator fun component2(): String
copy
Link copied to clipboard
fun copy(type: MapLoadErrorType, message: String): MapLoadingErrorEventData
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

message
Link copied to clipboard

The descriptive error message of the error.

@SerializedName(value = "message")
val message: String
type
Link copied to clipboard

Defines what resource could not be loaded.

@SerializedName(value = "type")
val type: MapLoadErrorType