#[allow(unused_imports)]
use serde_json::Value;
#[derive(Debug, Serialize, Deserialize)]
pub struct DebugStatsHandler {
#[serde(rename = "DELETE")]
pub delete: Option <crate::models::DebugStatsUnknown>,
#[serde(rename = "GET")]
pub get: Option <crate::models::DebugStatsUnknown>,
#[serde(rename = "HEAD")]
pub head: Option <crate::models::DebugStatsUnknown>,
#[serde(rename = "POST")]
pub post: Option <crate::models::DebugStatsUnknown>,
#[serde(rename = "PUT")]
pub put: Option <crate::models::DebugStatsUnknown>,
#[serde(rename = "UNSUPPORTED")]
pub unsupported: Option <crate::models::DebugStatsUnknown>,
#[serde(rename = "name")]
pub name: Option<String>,
}