Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.8 KB

ScoreCreationBuilderDataScoreDataInstrumentsInner.md

File metadata and controls

33 lines (24 loc) · 1.8 KB

ScoreCreationBuilderDataScoreDataInstrumentsInner

Properties

Name Type Description Notes
group str 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

from flat_api.models.score_creation_builder_data_score_data_instruments_inner import ScoreCreationBuilderDataScoreDataInstrumentsInner

# TODO update the JSON string below
json = "{}"
# create an instance of ScoreCreationBuilderDataScoreDataInstrumentsInner from a JSON string
score_creation_builder_data_score_data_instruments_inner_instance = ScoreCreationBuilderDataScoreDataInstrumentsInner.from_json(json)
# print the JSON string representation of the object
print ScoreCreationBuilderDataScoreDataInstrumentsInner.to_json()

# convert the object into a dict
score_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 dict
score_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)

[Back to Model list] [Back to API list] [Back to README]