Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.42 KB

ScoreTrackCreation.md

File metadata and controls

35 lines (26 loc) · 1.42 KB

ScoreTrackCreation

Creation of a new track. This one must contain the URL of the track or the corresponding file

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]
purpose ScoreTrackPurpose [optional]
url str The URL of the track [optional]
synchronization_points List[ScoreTrackPoint] [optional]

Example

from flat_api.models.score_track_creation import ScoreTrackCreation

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

# convert the object into a dict
score_track_creation_dict = score_track_creation_instance.to_dict()
# create an instance of ScoreTrackCreation from a dict
score_track_creation_form_dict = score_track_creation.from_dict(score_track_creation_dict)

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