zabbix_api/item/
mod.rs

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