Music track inlined inside a Video. null when the video has no sound track. For the full Music record see MusicDetail.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Music id (string form to preserve precision) | |
| title | str | ||
| author | str | ||
| is_original | bool |
from unifapi.models.music import Music
# TODO update the JSON string below
json = "{}"
# create an instance of Music from a JSON string
music_instance = Music.from_json(json)
# print the JSON string representation of the object
print(Music.to_json())
# convert the object into a dict
music_dict = music_instance.to_dict()
# create an instance of Music from a dict
music_from_dict = Music.from_dict(music_dict)