bitwarden_api_api/models/organization_seat_request_model.rs
/*
* Bitwarden Internal API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: latest
*
* Generated by: https://openapi-generator.tech
*/
use serde::{Deserialize, Serialize};
use crate::models;
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct OrganizationSeatRequestModel {
#[serde(rename = "seatAdjustment")]
pub seat_adjustment: i32,
}
impl OrganizationSeatRequestModel {
pub fn new(seat_adjustment: i32) -> OrganizationSeatRequestModel {
OrganizationSeatRequestModel { seat_adjustment }
}
}