parse_sap_odata/sap_semantics/entity_set.rs
1use serde::{Deserialize, Serialize};
2
3// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
4/// SAP Annotations applicable to `edm:EntitySet`
5///
6/// See https://sap.github.io/odata-vocabularies/docs/v2-annotations.html#element-edmentityset
7#[derive(Debug, Serialize, Deserialize)]
8pub enum SAPSemanticsEntitySet {
9 #[serde(rename = "aggregate")]
10 Aggregate,
11 #[serde(rename = "timeseries")]
12 TimeSeries,
13}