clientapi_pbs/models/
config_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 ConfigNotificationsGetMatcherFieldsResponseDataInner {
16
17 #[serde(rename = "name")]
19 pub name: String,
20
21
22}
23
24impl ConfigNotificationsGetMatcherFieldsResponseDataInner {
25 pub fn new(name: String) -> ConfigNotificationsGetMatcherFieldsResponseDataInner {
26 ConfigNotificationsGetMatcherFieldsResponseDataInner {
27
28 name,
29
30 }
31 }
32}
33
34