Edit the score metadata
| Name | Type | Description | Notes |
|---|---|---|---|
| title | str | The title of the score | [optional] |
| subtitle | str | The subtitle of the score | [optional] |
| composer | str | The composer of the score | [optional] |
| lyricist | str | The lyricist of the score | [optional] |
| arranger | str | The arranger of the score | [optional] |
| privacy | ScorePrivacy | [optional] | |
| sharing_key | str | When using the `privacy` mode `privateLink`, this property can be used to set a custom sharing key, otherwise a new key will be generated. | [optional] |
| description | str | Description of the creation | [optional] |
| tags | List[str] | Tags describing the score | [optional] |
| creation_type | ScoreCreationType | [optional] | |
| license | ScoreLicense | [optional] | |
| license_text | str | The rights info written on the score | [optional] |
from flat_api.models.score_modification import ScoreModification
# TODO update the JSON string below
json = "{}"
# create an instance of ScoreModification from a JSON string
score_modification_instance = ScoreModification.from_json(json)
# print the JSON string representation of the object
print ScoreModification.to_json()
# convert the object into a dict
score_modification_dict = score_modification_instance.to_dict()
# create an instance of ScoreModification from a dict
score_modification_form_dict = score_modification.from_dict(score_modification_dict)