Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.33 KB

UpdateResource.md

File metadata and controls

40 lines (31 loc) · 1.33 KB

UpdateResource

Properties

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]

Example

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]