InputLocationMessageContent

@Serializable
data class InputLocationMessageContent(val latitude: Double, val longitude: Double, val horizontalAccuracy: Meters? = null, val livePeriod: Seconds? = null, val heading: Degrees? = null, val proximityAlertRadius: Meters? = null) : Locationed, HorizontallyAccured, ProximityAlertable, Livable, Headed, InputMessageContent

Constructors

Link copied to clipboard
constructor(latitude: Double, longitude: Double, horizontalAccuracy: Meters? = null, livePeriod: Seconds? = null, heading: Degrees? = null, proximityAlertRadius: Meters? = null)

Properties

Link copied to clipboard
@SerialName(value = "heading")
open override val heading: Degrees? = null
Link copied to clipboard
@SerialName(value = "horizontal_accuracy")
open override val horizontalAccuracy: Meters? = null
Link copied to clipboard
@SerialName(value = "latitude")
open override val latitude: Double
Link copied to clipboard
@SerialName(value = "live_period")
open override val livePeriod: Seconds? = null

Period in Seconds

Link copied to clipboard
@SerialName(value = "longitude")
open override val longitude: Double
Link copied to clipboard
@SerialName(value = "proximity_alert_radius")
open override val proximityAlertRadius: Meters? = null