windmill-api 1.682.0

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Documentation
/*
 * Windmill API
 *
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.682.0
 * Contact: contact@windmill.dev
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct InstallFromWorkspaceRequest {
    /// The ID of the workspace containing the installation to copy
    #[serde(rename = "source_workspace_id")]
    pub source_workspace_id: String,
    /// The ID of the GitHub installation to copy
    #[serde(rename = "installation_id")]
    pub installation_id: f64,
}

impl InstallFromWorkspaceRequest {
    pub fn new(source_workspace_id: String, installation_id: f64) -> InstallFromWorkspaceRequest {
        InstallFromWorkspaceRequest {
            source_workspace_id,
            installation_id,
        }
    }
}