Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

MetadataConfigResource

Properties

Name Type Description Notes
id int [optional]
certification_country TMDbCountryCode [optional]

Example

from radarr.models.metadata_config_resource import MetadataConfigResource

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

# convert the object into a dict
metadata_config_resource_dict = metadata_config_resource_instance.to_dict()
# create an instance of MetadataConfigResource from a dict
metadata_config_resource_from_dict = MetadataConfigResource.from_dict(metadata_config_resource_dict)

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