/*
* Zernio API
*
* API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
*
* The version of the OpenAPI document: 1.0.4
* Contact: support@zernio.com
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// UpdateAccount200ResponseXCapabilities : Echo of the resulting `xCapabilities` state, returned only when the request body included an `xCapabilities` object.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct UpdateAccount200ResponseXCapabilities {
#[serde(rename = "analytics", skip_serializing_if = "Option::is_none")]
pub analytics: Option<bool>,
#[serde(rename = "inbox", skip_serializing_if = "Option::is_none")]
pub inbox: Option<bool>,
}
impl UpdateAccount200ResponseXCapabilities {
/// Echo of the resulting `xCapabilities` state, returned only when the request body included an `xCapabilities` object.
pub fn new() -> UpdateAccount200ResponseXCapabilities {
UpdateAccount200ResponseXCapabilities {
analytics: None,
inbox: None,
}
}
}