Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1013 Bytes

File metadata and controls

32 lines (23 loc) · 1013 Bytes

MediaFile

Properties

Name Type Description Notes
file_value FileValue [optional]
media_tracks List[MediaTrack] [optional]
id str [optional]
links List[APILink] [optional]

Example

from cyperf.models.media_file import MediaFile

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

# convert the object into a dict
media_file_dict = media_file_instance.to_dict()
# create an instance of MediaFile from a dict
media_file_from_dict = MediaFile.from_dict(media_file_dict)

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