Properties
Example
from jellyfin.generated.api_10_10.models.metadata_editor_info import MetadataEditorInfo
# TODO update the JSON string below
json = "{}"
# create an instance of MetadataEditorInfo from a JSON string
metadata_editor_info_instance = MetadataEditorInfo.from_json(json)
# print the JSON string representation of the object
print(MetadataEditorInfo.to_json())
# convert the object into a dict
metadata_editor_info_dict = metadata_editor_info_instance.to_dict()
# create an instance of MetadataEditorInfo from a dict
metadata_editor_info_from_dict = MetadataEditorInfo.from_dict(metadata_editor_info_dict)
[Back to Model list] [Back to API list] [Back to README]