PlaylistCreationResult

Properties

Name Type Description Notes
id str [optional]

Example

from jellyfin.generated.api_10_10.models.playlist_creation_result import PlaylistCreationResult

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

# convert the object into a dict
playlist_creation_result_dict = playlist_creation_result_instance.to_dict()
# create an instance of PlaylistCreationResult from a dict
playlist_creation_result_from_dict = PlaylistCreationResult.from_dict(playlist_creation_result_dict)

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