Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.19 KB

ScoreTrackUpdate.md

File metadata and controls

33 lines (24 loc) · 1.19 KB

ScoreTrackUpdate

Update an existing track.

Properties

Name Type Description Notes
title str Title of the track [optional]
default bool True if the track should be used as default audio source [optional]
state ScoreTrackState [optional]
synchronization_points List[ScoreTrackPoint] [optional]

Example

from flat_api.models.score_track_update import ScoreTrackUpdate

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

# convert the object into a dict
score_track_update_dict = score_track_update_instance.to_dict()
# create an instance of ScoreTrackUpdate from a dict
score_track_update_form_dict = score_track_update.from_dict(score_track_update_dict)

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