1use serde::Deserialize; 2 3/// API Object: https://www.zabbix.com/documentation/6.0/en/manual/api/reference/item/object 4#[derive(Deserialize, Debug)] 5pub struct ZabbixItem { 6 pub name: String, 7 8 pub key_: String, 9 10 #[serde(rename = "hostid")] 11 pub host_id: String, 12}