onesignal_rust_api/models/
inline_response_200_3.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: 1.4.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 InlineResponse2003 {
16    #[serde(rename = "in_app_messages", skip_serializing_if = "Option::is_none")]
17    pub in_app_messages: Option<Vec<serde_json::Value>>,
18}
19
20impl InlineResponse2003 {
21    pub fn new() -> InlineResponse2003 {
22        InlineResponse2003 {
23            in_app_messages: None,
24        }
25    }
26}
27
28