pub const RELATIONSHIP_TYPE: &str =
"http://schemas.openxmlformats.org/officeDocument/2006/relationships/handoutMaster";
pub const PATH_PREFIX: &str = "handoutMasters";
#[derive(Clone, Debug, Default, ooxmlsdk_derive::SdkPart)]
pub struct HandoutMasterPart {
#[sdk(part_rid)]
pub r_id: String,
#[sdk(part_relationships)]
pub relationships: Option<crate::schemas::opc_relationships::Relationships>,
#[sdk(part_rels_path)]
pub rels_path: String,
#[sdk(part_inner_path)]
pub inner_path: String,
#[sdk(part_root)]
pub root_element: crate::schemas::schemas_openxmlformats_org_presentationml_2006_main::HandoutMaster,
#[sdk(
part_child(
relationship_type = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml",
kind = "repeated"
)
)]
pub custom_xml_parts: Vec<crate::parts::custom_xml_part::CustomXmlPart>,
#[sdk(
part_child(
relationship_type = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart",
kind = "repeated"
)
)]
pub chart_parts: Vec<crate::parts::chart_part::ChartPart>,
#[cfg(feature = "microsoft365")]
#[sdk(
part_child(
relationship_type = "http://schemas.microsoft.com/office/2014/relationships/chartEx",
kind = "repeated"
)
)]
pub extended_chart_parts: Vec<crate::parts::extended_chart_part::ExtendedChartPart>,
#[sdk(
part_child(
relationship_type = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/diagramColors",
kind = "repeated"
)
)]
pub diagram_colors_parts: Vec<crate::parts::diagram_colors_part::DiagramColorsPart>,
#[sdk(
part_child(
relationship_type = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/diagramData",
kind = "repeated"
)
)]
pub diagram_data_parts: Vec<crate::parts::diagram_data_part::DiagramDataPart>,
#[cfg(feature = "microsoft365")]
#[sdk(
part_child(
relationship_type = "http://schemas.microsoft.com/office/2007/relationships/diagramDrawing",
kind = "repeated"
)
)]
pub diagram_persist_layout_parts: Vec<
crate::parts::diagram_persist_layout_part::DiagramPersistLayoutPart,
>,
#[sdk(
part_child(
relationship_type = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/diagramLayout",
kind = "repeated"
)
)]
pub diagram_layout_definition_parts: Vec<
crate::parts::diagram_layout_definition_part::DiagramLayoutDefinitionPart,
>,
#[sdk(
part_child(
relationship_type = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/diagramQuickStyle",
kind = "repeated"
)
)]
pub diagram_style_parts: Vec<crate::parts::diagram_style_part::DiagramStylePart>,
#[sdk(
part_child(
relationship_type = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/oleObject",
kind = "repeated"
)
)]
pub embedded_object_parts: Vec<
crate::parts::embedded_object_part::EmbeddedObjectPart,
>,
#[sdk(
part_child(
relationship_type = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/package",
kind = "repeated"
)
)]
pub embedded_package_parts: Vec<
crate::parts::embedded_package_part::EmbeddedPackagePart,
>,
#[sdk(
part_child(
relationship_type = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image",
kind = "repeated"
)
)]
pub image_parts: Vec<crate::parts::image_part::ImagePart>,
#[sdk(
part_child(
relationship_type = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing",
kind = "repeated"
)
)]
pub vml_drawing_parts: Vec<crate::parts::vml_drawing_part::VmlDrawingPart>,
#[sdk(
part_child(
relationship_type = "http://schemas.microsoft.com/office/2006/relationships/activeXControlBinary",
kind = "repeated"
)
)]
pub embedded_control_persistence_binary_data_parts: Vec<
crate::parts::embedded_control_persistence_binary_data_part::EmbeddedControlPersistenceBinaryDataPart,
>,
#[cfg(feature = "microsoft365")]
#[sdk(
part_child(
relationship_type = "http://schemas.microsoft.com/office/2017/06/relationships/model3d",
kind = "repeated"
)
)]
pub model3_d_reference_relationship_parts: Vec<
crate::parts::model3_d_reference_relationship_part::Model3DReferenceRelationshipPart,
>,
#[sdk(
part_child(
relationship_type = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme",
kind = "optional"
)
)]
pub theme_part: Option<std::boxed::Box<crate::parts::theme_part::ThemePart>>,
#[sdk(
part_child(
relationship_type = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/tags",
kind = "repeated"
)
)]
pub user_defined_tags_parts: Vec<
crate::parts::user_defined_tags_part::UserDefinedTagsPart,
>,
#[sdk(
part_child(
relationship_type = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide",
kind = "optional"
)
)]
pub slide_part: Option<std::boxed::Box<crate::parts::slide_part::SlidePart>>,
}