uapi_sdk_rust/models/generated/
endpoints_aggregate.rs

1/*
2 * UAPI
3 *
4 * UAPI 官方接口文档
5 *
6 * The version of the OpenAPI document: 1.0.0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct EndpointsAggregate {
16    #[serde(rename = "endpoints", skip_serializing_if = "Option::is_none")]
17    pub endpoints: Option<Vec<models::EndpointsAggregateEndpointsInner>>,
18    #[serde(rename = "unaggregated", skip_serializing_if = "Option::is_none")]
19    pub unaggregated: Option<Box<models::EndpointsAggregateUnaggregated>>,
20}
21
22impl EndpointsAggregate {
23    pub fn new() -> EndpointsAggregate {
24        EndpointsAggregate {
25            endpoints: None,
26            unaggregated: None,
27        }
28    }
29}
30