#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Default)]
pub enum ReadingContextEnumType {
#[serde(rename = "Interruption.Begin")]
InterruptionBegin,
#[serde(rename = "Interruption.End")]
InterruptionEnd,
Other,
#[serde(rename = "Sample.Clock")]
SampleClock,
#[default]
#[serde(rename = "Sample.Periodic")]
SamplePeriodic,
#[serde(rename = "Transaction.Begin")]
TransactionBegin,
#[serde(rename = "Transaction.End")]
TransactionEnd,
Trigger,
}