1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* geoprox-server
*
* Geoprox server implementation providing a HTTP API for geospatial queries and position tracking
*
* The version of the OpenAPI document: 0.5.0
* Contact: singhezra@gmail.com
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// InsertKey : Arguments for inserting a key
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct InsertKey {
/// Object key
#[serde(rename = "key")]
pub key: String,
/// Latitude
#[serde(rename = "lat")]
pub lat: f64,
/// Longitude
#[serde(rename = "lng")]
pub lng: f64,
/// The time-to-live (TTL) for this key, in seconds
#[serde(rename = "ttl", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub ttl: Option<Option<i64>>,
}
impl InsertKey {
/// Arguments for inserting a key
pub fn new(key: String, lat: f64, lng: f64) -> InsertKey {
InsertKey {
key,
lat,
lng,
ttl: None,
}
}
}