podman_rest_client/v5/models/network_prune_report.rs
1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// NetworkPruneReport containers the name of network and an error
4/// associated in its pruning (removal)
5pub struct NetworkPruneReport {
6    #[serde(rename = "Error")]
7    pub error: Option<String>,
8    #[serde(rename = "Name")]
9    pub name: Option<String>,
10}