lattice_sdk/api/types/
echelon.rs

1pub use crate::prelude::*;
2
3/// Describes a Echelon group type.  Comprised of entities which are members of the
4/// same unit or echelon. Ex: A group of tanks within a armored company or that same company
5/// as a member of a battalion.
6#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, Hash)]
7pub struct Echelon {
8    #[serde(rename = "armyEchelon")]
9    #[serde(skip_serializing_if = "Option::is_none")]
10    pub army_echelon: Option<EchelonArmyEchelon>,
11}