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