sideko_rest_api 0.9.2

Rust API Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// ApiSpecStats
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct ApiSpecStats {
    /// Total Authenticated Methods (operations)
    pub authenticated_methods: i64,
    /// A description of all defined auth schemes
    pub authentication_schemes: Vec<String>,
    /// Total Endpoints (paths)
    pub endpoints: i64,
    pub lint_errors: crate::models::ApiSpecStatsLintErrors,
    /// Total Methods (operations)
    pub methods: i64,
    /// Total Unauthenticated Methods (operations)
    pub public_methods: i64,
    /// All Response Codes (not deduplicated)
    pub response_codes: Vec<i64>,
}