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