Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 857 Bytes

TrackElement.md

File metadata and controls

29 lines (20 loc) · 857 Bytes

TrackElement

Properties

Name Type Description Notes
parent_track_id str

Example

from pyaudius.models.track_element import TrackElement

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

# convert the object into a dict
track_element_dict = track_element_instance.to_dict()
# create an instance of TrackElement from a dict
track_element_from_dict = TrackElement.from_dict(track_element_dict)

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