use crate::datatypes::{Color, FontFamily, FontSize, FontStyle, FontWeight, NonNegativeInteger};
use alloc::{string::String, vec::Vec};
use musicxml_internal::*;
use musicxml_macros::*;
#[derive(Debug, Default, PartialEq, Eq, AttributeDeserialize, AttributeSerialize)]
pub struct TupletNumberAttributes {
pub color: Option<Color>,
pub font_family: Option<FontFamily>,
pub font_size: Option<FontSize>,
pub font_style: Option<FontStyle>,
pub font_weight: Option<FontWeight>,
}
#[derive(Debug, PartialEq, Eq, ElementDeserialize, ElementSerialize)]
#[rename("tuplet-number")]
pub struct TupletNumber {
pub attributes: TupletNumberAttributes,
pub content: NonNegativeInteger,
}