Name | Type | Description | Notes |
---|---|---|---|
actions | List[Action] | [optional] | |
add_actions | List[bytearray] | [optional] | |
id | str | ||
links | List[APILink] | [optional] |
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)