#[allow(unused_imports)]
use super::*;
#[allow(unused_imports)]
use crate::enums::*;
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DsyncActivatedData {
pub object: String,
pub id: String,
#[serde(skip_serializing_if = "Option::is_none", default)]
pub organization_id: Option<String>,
#[serde(rename = "type")]
pub type_: DsyncActivatedDataType,
pub state: DsyncActivatedDataState,
pub name: String,
pub created_at: String,
pub updated_at: String,
pub external_key: String,
pub domains: Vec<DsyncActivatedDataDomain>,
}