/*
* JSON Ledger API HTTP endpoints
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 3.3.0-SNAPSHOT
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// ParticipantAuthorizationTopologyFormat : A format specifying which participant authorization topology transactions to include and how to render them.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ParticipantAuthorizationTopologyFormat {
/// List of parties for which the topology transactions should be sent. Empty means: for all parties.
#[serde(rename = "parties", skip_serializing_if = "Option::is_none")]
pub parties: Option<Vec<String>>,
}
impl ParticipantAuthorizationTopologyFormat {
/// A format specifying which participant authorization topology transactions to include and how to render them.
pub fn new() -> ParticipantAuthorizationTopologyFormat {
ParticipantAuthorizationTopologyFormat {
parties: None,
}
}
}