/*
* Windmill API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.680.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 WorkspaceGithubInstallation {
#[serde(rename = "account_id")]
pub account_id: String,
#[serde(rename = "installation_id")]
pub installation_id: f64,
}
impl WorkspaceGithubInstallation {
pub fn new(account_id: String, installation_id: f64) -> WorkspaceGithubInstallation {
WorkspaceGithubInstallation {
account_id,
installation_id,
}
}
}