use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Clone, Debug)]
pub struct ZabbixWebScenario {
pub name: String,
#[serde(alias = "hostid")]
pub host_id: String,
pub steps: Vec<ZabbixWebScenarioStep>,
}
#[derive(Serialize, Deserialize, Clone, Debug)]
pub struct ZabbixWebScenarioStep {
pub name: String,
pub url: String,
pub status_codes: String,
pub no: String,
}