/*
* Zernio API
*
* API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
*
* The version of the OpenAPI document: 1.0.4
* Contact: support@zernio.com
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// GetSmsRegistration200ResponseCampaignContent : The submitted campaign content, present only for rejected registrations with a campaign. Edit and resubmit it via the appeal endpoint's optional content fields.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetSmsRegistration200ResponseCampaignContent {
#[serde(rename = "messageFlow", skip_serializing_if = "Option::is_none")]
pub message_flow: Option<String>,
#[serde(rename = "sample1", skip_serializing_if = "Option::is_none")]
pub sample1: Option<String>,
#[serde(rename = "sample2", skip_serializing_if = "Option::is_none")]
pub sample2: Option<String>,
}
impl GetSmsRegistration200ResponseCampaignContent {
/// The submitted campaign content, present only for rejected registrations with a campaign. Edit and resubmit it via the appeal endpoint's optional content fields.
pub fn new() -> GetSmsRegistration200ResponseCampaignContent {
GetSmsRegistration200ResponseCampaignContent {
message_flow: None,
sample1: None,
sample2: None,
}
}
}