podman_rest_client/v5/models/
id_response.rs

1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// IDResponse Response to an API call that returns just an Id
4pub struct IdResponse {
5    /// The id of the newly created object.
6    #[serde(rename = "Id")]
7    pub id: String,
8}