/// Deployment
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct Deployment {
pub created_at: String,
pub current_preview: bool,
pub current_prod: bool,
pub doc_version: crate::models::DocVersion,
pub id: String,
/// an object describing the guides, api links, and theming included in the triggered deployment
pub metadata: std::collections::HashMap<String, serde_json::Value>,
pub status: crate::models::DeploymentStatusEnum,
pub target: crate::models::DeploymentTargetEnum,
}