use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct RawAppEmbedBody {
#[serde(rename = "external_embed_url", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub external_embed_url: Option<Option<String>>,
#[serde(rename = "project_slug")]
pub project_slug: String,
}
impl RawAppEmbedBody {
pub fn new(project_slug: String) -> RawAppEmbedBody {
RawAppEmbedBody {
external_embed_url: None,
project_slug,
}
}
}