1
2
3
4
5
6
7
8
9
10
11
12
use serde::{Deserialize, Serialize};

/// API Object: https://www.zabbix.com/documentation/6.0/en/manual/api/reference/template/object
#[derive(Serialize,Deserialize,Debug)]
pub struct ZabbixTemplate {
    #[serde(rename = "templateid")]
    pub template_id: String,
    pub host: String,
    pub description: String,
    pub name: String,
    pub uuid: String
}