//
// -----------------------------------------------------------------------------
// THIS FILE WAS @generated AUTOMATICALLY. DO NOT MODIFY THIS FILE MANUALLY.
// -----------------------------------------------------------------------------
//
/// Defines the LongProperties Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "lp:LongProperties")]
pub struct LongProperties {
/// Defines the LongProperty Class.
#[sdk(child(qname = "lp:LongProp"))]
pub long_property: Vec<LongProperty>,
}
/// Defines the LongProperty Class.
#[derive(Clone, Debug, Default, PartialEq, ooxmlsdk_derive::SdkType)]
#[sdk(qname = "lp:LongProp")]
pub struct LongProperty {
/// name
#[sdk(attr(qname = ":name"))]
pub name: Option<crate::simple_type::StringValue>,
#[sdk(text)]
pub xml_content: Option<crate::simple_type::StringValue>,
}