You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The of the instrument group (e.g. `keyboards`, `brass`)
instrument
str
The identifier of the instrument (e.g. `piano`, `trumpet`)
long_name
str
The full name of the instrument
[optional]
short_name
str
The abbreviation of the name of the instrument
[optional]
has_quarter_tone
bool
True if the part can use quarter tone (prevent the part to have a TAB/chord grid)
[optional]
Example
fromflat_api.models.score_creation_builder_data_score_data_instruments_innerimportScoreCreationBuilderDataScoreDataInstrumentsInner# TODO update the JSON string belowjson="{}"# create an instance of ScoreCreationBuilderDataScoreDataInstrumentsInner from a JSON stringscore_creation_builder_data_score_data_instruments_inner_instance=ScoreCreationBuilderDataScoreDataInstrumentsInner.from_json(json)
# print the JSON string representation of the objectprintScoreCreationBuilderDataScoreDataInstrumentsInner.to_json()
# convert the object into a dictscore_creation_builder_data_score_data_instruments_inner_dict=score_creation_builder_data_score_data_instruments_inner_instance.to_dict()
# create an instance of ScoreCreationBuilderDataScoreDataInstrumentsInner from a dictscore_creation_builder_data_score_data_instruments_inner_form_dict=score_creation_builder_data_score_data_instruments_inner.from_dict(score_creation_builder_data_score_data_instruments_inner_dict)