//! Generated by: <https://openapi-generator.tech>
//!
//! Version of specification: `2.0.0`
use serde::{Deserialize, Serialize};
///
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetAgents200Response {
#[serde(rename = "data")]
pub data: Vec<crate::models::Agent>,
#[serde(rename = "meta")]
pub meta: crate::models::Meta,
}
impl GetAgents200Response {
/// Create value with optional fields set to `None`.
#[allow(clippy::too_many_arguments)]
pub fn new(data: Vec<crate::models::Agent>, meta: crate::models::Meta) -> GetAgents200Response {
GetAgents200Response { data, meta }
}
}