Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.04 KB

File metadata and controls

35 lines (26 loc) · 1.04 KB

MediaTrack

Properties

Name Type Description Notes
bitrate int [optional]
bitrate_kbps int [optional]
codec str [optional]
codec_description str [optional]
track_id str
track_type TrackType
id str

Example

from cyperf.models.media_track import MediaTrack

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

# convert the object into a dict
media_track_dict = media_track_instance.to_dict()
# create an instance of MediaTrack from a dict
media_track_from_dict = MediaTrack.from_dict(media_track_dict)

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