| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] |
| source_type |
SourceType |
|
[optional] |
| movie_metadata_id |
int |
|
[optional] |
| title |
str |
|
[optional] |
| clean_title |
str |
|
[optional] |
from radarr.models.alternative_title_resource import AlternativeTitleResource
# TODO update the JSON string below
json = "{}"
# create an instance of AlternativeTitleResource from a JSON string
alternative_title_resource_instance = AlternativeTitleResource.from_json(json)
# print the JSON string representation of the object
print(AlternativeTitleResource.to_json())
# convert the object into a dict
alternative_title_resource_dict = alternative_title_resource_instance.to_dict()
# create an instance of AlternativeTitleResource from a dict
alternative_title_resource_from_dict = AlternativeTitleResource.from_dict(alternative_title_resource_dict)
[Back to Model list] [Back to API list] [Back to README]