MetadataEditorInfo

Properties

Name Type Description Notes
parental_rating_options List[ParentalRating] [optional]
countries List[CountryInfo] [optional]
cultures List[CultureDto] [optional]
external_id_infos List[ExternalIdInfo] [optional]
content_type CollectionType [optional]
content_type_options List[NameValuePair] [optional]

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]