podman_rest_client/v5/models/
history.rs

1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// History describes the history of a layer.
4pub struct History {
5    /// Author is the author of the build point.
6    pub author: Option<String>,
7    /// Comment is a custom message set when creating the layer.
8    pub comment: Option<String>,
9    /// Created is the combined date and time at which the layer was created, formatted as defined by RFC 3339, section 5.6.
10    pub created: Option<String>,
11    /// CreatedBy is the command which created the layer.
12    pub created_by: Option<String>,
13    /// EmptyLayer is used to mark if the history item created a filesystem diff.
14    pub empty_layer: Option<bool>,
15}