1//! `GetMetrics` response DTO. 2 3use crate::Air::AirServiceTypesStub::AirMetricsProtoDTO; 4 5#[derive(Debug, Clone)] 6pub struct Struct { 7 pub metrics:AirMetricsProtoDTO::Struct, 8 9 pub error:String, 10}