podman_rest_client/v5/models/
lease_range.rs

1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// LeaseRange contains the range where IP are leased.
4pub struct LeaseRange {
5    /// EndIP last IP in the subnet which should be used to assign ips.
6    pub end_ip: Option<String>,
7    /// StartIP first IP in the subnet which should be used to assign ips.
8    pub start_ip: Option<String>,
9}