podman_rest_client/v5/models/
meta.rs

1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// Meta is a base object inherited by most of the other once.
4pub struct Meta {
5    #[serde(rename = "CreatedAt")]
6    pub created_at: Option<String>,
7    #[serde(rename = "UpdatedAt")]
8    pub updated_at: Option<String>,
9    #[serde(rename = "Version")]
10    pub version: Option<crate::v5::models::Version>,
11}