Skip to content
This repository has been archived by the owner on Aug 26, 2024. It is now read-only.

Latest commit

 

History

History
31 lines (22 loc) · 802 Bytes

Media.md

File metadata and controls

31 lines (22 loc) · 802 Bytes

Media

Properties

Name Type Description Notes
url str
seed int
nsfw bool

Example

from livepeer_ai.models.media import Media

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

# convert the object into a dict
media_dict = media_instance.to_dict()
# create an instance of Media from a dict
media_from_dict = Media.from_dict(media_dict)

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