ooxmlsdk 0.4.0

Open XML SDK for Rust
Documentation
//
// -----------------------------------------------------------------------------
//  THIS FILE WAS @generated AUTOMATICALLY. DO NOT MODIFY THIS FILE MANUALLY.
// -----------------------------------------------------------------------------
//

#[derive(Clone, Debug, Default, ooxmlsdk_derive::SdkEnum)]
pub enum ClassificationOutcomeType {
  #[sdk(rename = "none")]
  #[default]
  None,
  #[sdk(rename = "hdr")]
  Hdr,
  #[sdk(rename = "ftr")]
  Ftr,
  #[sdk(rename = "watermark")]
  Watermark,
}
/// Defines the ClassificationOutcome Class.
///
/// Available in Office2021 and above.
///
/// When the object is serialized out as xml, it's qualified name is aclsh:classification.
#[derive(Clone, Debug, Default, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "aclsh:CT_ClassificationOutcome/aclsh:classification")]
pub struct ClassificationOutcome {
  /// classificationOutcomeType
  ///
  /// Available in Office2021 and above.
  ///
  /// Represents the following attribute in the schema: :classificationOutcomeType
  #[sdk(attr(qname = ":classificationOutcomeType"))]
  #[sdk(string_format(source = 0u32, kind = "token"))]
  pub classification_outcome_type: Option<ClassificationOutcomeType>,
}