use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetAllAccountsHealth200Response {
#[serde(rename = "summary", skip_serializing_if = "Option::is_none")]
pub summary: Option<Box<models::GetAllAccountsHealth200ResponseSummary>>,
#[serde(rename = "accounts", skip_serializing_if = "Option::is_none")]
pub accounts: Option<Vec<models::GetAllAccountsHealth200ResponseAccountsInner>>,
}
impl GetAllAccountsHealth200Response {
pub fn new() -> GetAllAccountsHealth200Response {
GetAllAccountsHealth200Response {
summary: None,
accounts: None,
}
}
}