/*
* Windmill API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.800.1
* 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 GetBillableSeats200Response {
/// Omitted when the seats counted are another workspace's, as they are for a fork resolving to its billing root.
#[serde(rename = "developers", skip_serializing_if = "Option::is_none")]
pub developers: Option<i32>,
/// Omitted when the seats counted are another workspace's, as they are for a fork resolving to its billing root.
#[serde(rename = "operators", skip_serializing_if = "Option::is_none")]
pub operators: Option<i32>,
#[serde(rename = "seats")]
pub seats: i32,
}
impl GetBillableSeats200Response {
pub fn new(seats: i32) -> GetBillableSeats200Response {
GetBillableSeats200Response {
developers: None,
operators: None,
seats,
}
}
}