Surrogate

@Serializable
data class Surrogate(val type: String, val latitude: Double? = null, val longitude: Double? = null, val address: LocationAddress? = null, val reactionType: ReactionType? = null, val isDark: Boolean? = null, val isFlipped: Boolean? = null, val url: String? = null, val temperature: Double? = null, val emoji: String? = null, val backgroundColor: HEXAColor? = null, val name: String? = null)(source)

Constructors

Link copied to clipboard
constructor(type: String, latitude: Double? = null, longitude: Double? = null, address: LocationAddress? = null, reactionType: ReactionType? = null, isDark: Boolean? = null, isFlipped: Boolean? = null, url: String? = null, temperature: Double? = null, emoji: String? = null, backgroundColor: HEXAColor? = null, name: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "address")
val address: LocationAddress?
Link copied to clipboard
@SerialName(value = "background_color")
val backgroundColor: HEXAColor?
Link copied to clipboard
@SerialName(value = "emoji")
val emoji: String?
Link copied to clipboard
@SerialName(value = "is_dark")
val isDark: Boolean?
Link copied to clipboard
@SerialName(value = "is_flipped")
val isFlipped: Boolean?
Link copied to clipboard
@SerialName(value = "latitude")
val latitude: Double?
Link copied to clipboard
@SerialName(value = "longitude")
val longitude: Double?
Link copied to clipboard
@SerialName(value = "name")
val name: String?
Link copied to clipboard
@SerialName(value = "reaction_type")
val reactionType: ReactionType?
Link copied to clipboard
@SerialName(value = "temperature")
val temperature: Double?
Link copied to clipboard
@SerialName(value = "type")
val type: String
Link copied to clipboard
@SerialName(value = "url")
val url: String?