Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 922 Bytes

Track.md

File metadata and controls

32 lines (23 loc) · 922 Bytes

Track

Properties

Name Type Description Notes
actions List[Action] [optional]
add_actions List[bytearray] [optional]
id str
links List[APILink] [optional]

Example

from cyperf.models.track import Track

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

# convert the object into a dict
track_dict = track_instance.to_dict()
# create an instance of Track from a dict
track_from_dict = Track.from_dict(track_dict)

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