Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.16 KB

ScoreTrackPoint.md

File metadata and controls

32 lines (23 loc) · 1.16 KB

ScoreTrackPoint

A track synchronization point

Properties

Name Type Description Notes
type str The type of the synchronization point. If the type is `measure`, the measure uuid must be present in `measureUuid`
measure_uuid str The measure unique identifier [optional]
time float The corresponding time in seconds

Example

from flat_api.models.score_track_point import ScoreTrackPoint

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

# convert the object into a dict
score_track_point_dict = score_track_point_instance.to_dict()
# create an instance of ScoreTrackPoint from a dict
score_track_point_form_dict = score_track_point.from_dict(score_track_point_dict)

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