clientapi_pve/models/
cluster_notifications_get_matcher_fields_response_data_inner.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct ClusterNotificationsGetMatcherFieldsResponseDataInner {
16
17 #[serde(rename = "name")]
19 pub name: String,
20
21
22}
23
24impl ClusterNotificationsGetMatcherFieldsResponseDataInner {
25 pub fn new(name: String) -> ClusterNotificationsGetMatcherFieldsResponseDataInner {
26 ClusterNotificationsGetMatcherFieldsResponseDataInner {
27
28 name,
29
30 }
31 }
32}
33
34