onesignal_rust_api/models/
create_user_conflict_response_errors_inner.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 CreateUserConflictResponseErrorsInner {
16    #[serde(rename = "code", skip_serializing_if = "Option::is_none")]
17    pub code: Option<String>,
18    #[serde(rename = "title", skip_serializing_if = "Option::is_none")]
19    pub title: Option<String>,
20    #[serde(rename = "meta", skip_serializing_if = "Option::is_none")]
21    pub meta: Option<Box<crate::models::CreateUserConflictResponseErrorsItemsMeta>>,
22}
23
24impl CreateUserConflictResponseErrorsInner {
25    pub fn new() -> CreateUserConflictResponseErrorsInner {
26        CreateUserConflictResponseErrorsInner {
27            code: None,
28            title: None,
29            meta: None,
30        }
31    }
32}
33
34