use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct CopilotListCopilotSeats200Response {
#[serde(rename = "total_seats", skip_serializing_if = "Option::is_none")]
pub total_seats: Option<i32>,
#[serde(rename = "seats", skip_serializing_if = "Option::is_none")]
pub seats: Option<Vec<models::CopilotSeatDetails>>,
}
impl CopilotListCopilotSeats200Response {
pub fn new() -> CopilotListCopilotSeats200Response {
CopilotListCopilotSeats200Response {
total_seats: None,
seats: None,
}
}
}