Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.14 KB

File metadata and controls

37 lines (28 loc) · 1.14 KB

MusicDetail

Full music-track record. The smaller Music field on a Video is a subset of this.

Properties

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

Example

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)

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