Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 999 Bytes

File metadata and controls

33 lines (24 loc) · 999 Bytes

Music

Music track inlined inside a Video. null when the video has no sound track. For the full Music record see MusicDetail.

Properties

Name Type Description Notes
id str Music id (string form to preserve precision)
title str
author str
is_original bool

Example

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)

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