2020-08-12 18:39:40 +02:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
|
|
|
/// This object represents a point on the map.
|
|
|
|
#[derive(Copy, Clone, Debug, PartialEq, Serialize, Deserialize)]
|
|
|
|
pub struct Location {
|
|
|
|
/// Longitude as defined by sender.
|
|
|
|
pub longitude: f64,
|
|
|
|
|
|
|
|
/// Latitude as defined by sender.
|
|
|
|
pub latitude: f64,
|
2021-03-14 15:10:06 +01:00
|
|
|
|
|
|
|
/// The radius of uncertainty for the location, measured in meters; 0-1500
|
|
|
|
pub horizontal_accuracy: Option<f64>,
|
|
|
|
|
|
|
|
/// Time relative to the message sending date, during which the location can
|
|
|
|
/// be updated, in seconds. For active live locations only.
|
|
|
|
pub live_period: Option<u32>,
|
|
|
|
|
|
|
|
/// The direction in which user is moving, in degrees; 1-360. For active
|
|
|
|
/// live locations only.
|
|
|
|
pub heading: Option<u16>,
|
|
|
|
|
|
|
|
/// Maximum distance for proximity alerts about approaching another chat
|
|
|
|
/// member, in meters. For sent live locations only.
|
|
|
|
pub proximity_alert_radius: Option<u32>,
|
2020-08-12 18:39:40 +02:00
|
|
|
}
|