#[allow(unused_imports)]
use serde_json::Value;
#[derive(Debug, Serialize, Deserialize)]
pub struct NfsNlmSessionsSession {
#[serde(rename = "delegates")]
pub delegates: Option<Vec<i32>>,
#[serde(rename = "host_type")]
pub host_type: Option<String>,
#[serde(rename = "hostname")]
pub hostname: Option<String>,
#[serde(rename = "is_active")]
pub is_active: Option<bool>,
#[serde(rename = "last_modified")]
pub last_modified: Option<i32>,
#[serde(rename = "node_ip")]
pub node_ip: Option<String>,
#[serde(rename = "notify_attempts_remaining")]
pub notify_attempts_remaining: Option<i32>,
#[serde(rename = "notify_error")]
pub notify_error: Option<String>,
#[serde(rename = "notify_last_attempt")]
pub notify_last_attempt: Option<i32>,
}