onesignal_rust_api/models/export_subscriptions_success_response.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 * Contact: devrel@onesignal.com
7 * Generated by: https://openapi-generator.tech
8 */
9
10
11
12
13#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
14pub struct ExportSubscriptionsSuccessResponse {
15 #[serde(rename = "csv_file_url", skip_serializing_if = "Option::is_none")]
16 pub csv_file_url: Option<String>,
17}
18
19impl ExportSubscriptionsSuccessResponse {
20 pub fn new() -> ExportSubscriptionsSuccessResponse {
21 ExportSubscriptionsSuccessResponse {
22 csv_file_url: None,
23 }
24 }
25}
26
27