use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct UpdateFormat {
#[serde(rename = "includeTransactions", skip_serializing_if = "Option::is_none")]
pub include_transactions: Option<Box<models::TransactionFormat>>,
#[serde(rename = "includeReassignments", skip_serializing_if = "Option::is_none")]
pub include_reassignments: Option<Box<models::EventFormat>>,
#[serde(rename = "includeTopologyEvents", skip_serializing_if = "Option::is_none")]
pub include_topology_events: Option<Box<models::TopologyFormat>>,
}
impl UpdateFormat {
pub fn new() -> UpdateFormat {
UpdateFormat {
include_transactions: None,
include_reassignments: None,
include_topology_events: None,
}
}
}