Name |
Type |
Description |
Notes |
id |
int |
|
[optional] |
version |
str |
|
[optional] |
branch |
str |
|
[optional] |
release_date |
datetime |
|
[optional] |
file_name |
str |
|
[optional] |
url |
str |
|
[optional] |
installed |
bool |
|
[optional] |
installed_on |
datetime |
|
[optional] |
installable |
bool |
|
[optional] |
latest |
bool |
|
[optional] |
changes |
UpdateChanges |
|
[optional] |
hash |
str |
|
[optional] |
from sonarr.models.update_resource import UpdateResource
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateResource from a JSON string
update_resource_instance = UpdateResource.from_json(json)
# print the JSON string representation of the object
print(UpdateResource.to_json())
# convert the object into a dict
update_resource_dict = update_resource_instance.to_dict()
# create an instance of UpdateResource from a dict
update_resource_from_dict = UpdateResource.from_dict(update_resource_dict)
[Back to Model list] [Back to API list] [Back to README]