sideko_rest_api 0.9.2

Rust API Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// SyncSdkConfig
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct SyncSdkConfig {
    /// Can be either the semantic version or a released type (like latest)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub api_version: Option<crate::models::ApiVersion>,
    /// SDK configuration file in .yaml format
    pub config: crate::UploadFile,
    /// Use api_version in typical use. If this field is supplied, the configuration sync will match the spec rather than any API that lives in Sideko.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub openapi: Option<crate::UploadFile>,
}