sideko_rest_api 0.9.2

Rust API Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// 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,
}