Full music-track record. The smaller Music field on a Video is a subset of this.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| title | str | ||
| author | str | ||
| cover_url | str | ||
| duration | float | Seconds | |
| is_original | bool | ||
| play_url | str | ||
| user_count | int | Number of videos that used this music |
from unifapi.models.music_detail import MusicDetail
# TODO update the JSON string below
json = "{}"
# create an instance of MusicDetail from a JSON string
music_detail_instance = MusicDetail.from_json(json)
# print the JSON string representation of the object
print(MusicDetail.to_json())
# convert the object into a dict
music_detail_dict = music_detail_instance.to_dict()
# create an instance of MusicDetail from a dict
music_detail_from_dict = MusicDetail.from_dict(music_detail_dict)