1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};
#[derive(Default, Debug, Serialize, Deserialize)]
/// ContainerCreateResponse is the response struct for creating a container
pub struct ContainerCreateResponse {
    /// ID of the container created
    #[serde(rename = "Id")]
    pub id: String,
    /// Warnings during container creation
    #[serde(rename = "Warnings")]
    pub warnings: Vec<String>,
}