use alloc::string::String;
use musicxml_internal::*;
use musicxml_macros::*;
/// The [Sffz] element represents a sforzando sffz dynamic marking.
///
/// 
#[derive(Debug, PartialEq, Eq, ElementDeserialize, ElementSerialize)]
pub struct Sffz {
/// Element-specific attributes
pub attributes: (),
/// Element-specific content
pub content: (),
}