sideko_rest_api 0.9.2

Rust API Client
Documentation
/// NewSdkRepo
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct NewSdkRepo {
    /// force generate the SDK even if there are linting errors
    #[serde(skip_serializing_if = "Option::is_none")]
    pub allow_lint_errors: Option<bool>,
    /// 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,
    /// Deprecated, will have no effect. Use `sync_github_actions` in the SKD config.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub github_actions: Option<bool>,
    /// Programming languages available for SDK generation
    pub language: crate::models::SdkLanguageEnum,
    /// Semantic version following conventions from https://semver.org/
    #[serde(skip_serializing_if = "Option::is_none")]
    pub sdk_version: Option<String>,
    pub repo_name: String,
}