onesignal_rust_api/models/subscription_body.rs
1/*
2 * OneSignal
3 *
4 * A powerful way to send personalized messages at scale and build effective customer engagement strategies. Learn more at onesignal.com
5 *
6 * The version of the OpenAPI document: 5.2.1
7 * Contact: devrel@onesignal.com
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
15pub struct SubscriptionBody {
16 #[serde(rename = "subscription", skip_serializing_if = "Option::is_none")]
17 pub subscription: Option<Box<crate::models::Subscription>>,
18}
19
20impl SubscriptionBody {
21 pub fn new() -> SubscriptionBody {
22 SubscriptionBody {
23 subscription: None,
24 }
25 }
26}
27
28