podman_rest_client/v5/models/list_response.rs
1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// ListResponse VolumeListResponse
4/// Volume list response
5pub struct ListResponse {
6    /// List of volumes
7    #[serde(rename = "Volumes")]
8    pub volumes: Option<Vec<crate::v5::models::Volume>>,
9    /// Warnings that occurred when fetching the list of volumes.
10    #[serde(rename = "Warnings")]
11    pub warnings: Option<Vec<String>>,
12}