rust_ocpp/v2_0_1/messages/
get_variables.rs1use crate::v2_0_1::datatypes::get_variable_data_type::GetVariableDataType;
4use crate::v2_0_1::datatypes::get_variable_result_type::GetVariableResultType;
5
6#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Default)]
8#[serde(rename_all = "camelCase")]
9pub struct GetVariablesRequest {
10 pub get_variable_data: Vec<GetVariableDataType>,
12}
13
14#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Default)]
16#[serde(rename_all = "camelCase")]
17pub struct GetVariablesResponse {
18 pub get_variable_result: Vec<GetVariableResultType>,
20}