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