zabbix_api/template/
mod.rs

1use serde::{Deserialize, Serialize};
2
3/// API Object: https://www.zabbix.com/documentation/6.0/en/manual/api/reference/template/object
4#[derive(Serialize,Deserialize,Debug)]
5pub struct ZabbixTemplate {
6    #[serde(rename = "templateid")]
7    pub template_id: String,
8    pub host: String,
9    pub description: String,
10    pub name: String,
11    pub uuid: String
12}