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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
use serde::Serialize;
#[derive(Debug, Clone, Serialize)]
/**
A message to be used in conjunction with the send_pushover_request function.
Note: It is preferred to create a Message through the MessageBuilder.
**/
pub struct Message {
/* Required */
/// (Required) Your app API token, see https://pushover.net/apps/[your application ID]
#[serde(rename = "token")]
pub app_token: String,
/// (Required) Your User key, see your dashboard (https://pushover.net/ top-right)
#[serde(rename = "user")]
pub user_key: String,
/// (Required) Your message
pub message: String,
/* Optional */
/// The title of the message, otherwise your app's name will be used
#[serde(skip_serializing_if = "Option::is_none")]
pub title: Option<String>,
/// A supplementary URL to show with your message
#[serde(skip_serializing_if = "Option::is_none")]
pub url: Option<String>,
/// A title for your supplementary URL, otherwise just the URL is shown
#[serde(skip_serializing_if = "Option::is_none")]
pub url_title: Option<String>,
/// Send as -2 to generate no notification/alert, -1 to always send as a quiet notification, 1 to display as high-priority and bypass the user's quiet hours, or 2 to also require confirmation from the user
#[serde(skip_serializing_if = "Option::is_none")]
pub priority: Option<i8>,
/// When the priority is set to 2, sets the amount of seconds between each retries. Must be at least 30 seconds.
#[serde(skip_serializing_if = "Option::is_none")]
pub retry: Option<i32>, // Required if priority is set to 2
/// When the priority is set to 2, sets the amount of seconds before the notification is expired. The maximum value is 10800 (3 hours).be between 60 and 10800.
#[serde(skip_serializing_if = "Option::is_none")]
pub expire: Option<i32>, // Required if priority is set to 2
/// The name of one of the sounds supported by device clients to override the user's default sound choice. (See sound list: https://pushover.net/api#sounds)
#[serde(skip_serializing_if = "Option::is_none")]
pub sound: Option<String>,
/// A Unix timestamp of your message's date and time to display to the user, rather than the time your message is received by our API
#[serde(skip_serializing_if = "Option::is_none")]
pub timestamp: Option<u64>, // Year 2038 proof :p
/// A device name to send the push notifications to, if you want to limit the notification to a certain device.
#[serde(skip_serializing_if = "Option::is_none")]
pub device: Option<String>,
/// A TTL (Time to Live) in seconds, after which the message will be automatically deleted from the recipient's inbox.
/// Setting *ttl* to None prevents this auto removal. Setting TTL to 0 will raise an error (ttl must be > 0).
#[serde(skip_serializing_if = "Option::is_none")]
pub ttl: Option<u32>,
}
impl Default for Message {
fn default() -> Self {
Self {
app_token: "".into(),
user_key: "".into(),
message: "No message set.".into(),
title: None,
url: None,
url_title: None,
priority: None,
retry: None,
expire: None,
sound: None,
timestamp: None,
device: None,
ttl: None,
}
}
}