use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, JsonSchema)]
#[schemars(rename = "cli.output.notification.swarms.Swarm")]
pub struct Swarm {
pub swarm: crate::swarm::response::GetSwarmResponse,
}