1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::v2_0_1::datatypes::set_monitoring_data_type::SetMonitoringDataType;
use crate::v2_0_1::datatypes::set_monitoring_result_type::SetMonitoringResultType;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct SetVariableMonitoringRequest {
pub set_monitoring_data: Vec<SetMonitoringDataType>,
}
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct SetVariableMonitoringResponse {
pub set_monitoring_result: Vec<SetMonitoringResultType>,
}