/// 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>,
}