A track synchronization point
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 |
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)