Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 878 Bytes

Revision.md

File metadata and controls

31 lines (22 loc) · 878 Bytes

Revision

Properties

Name Type Description Notes
version int [optional]
real int [optional]
is_repack bool [optional]

Example

from sonarr.models.revision import Revision

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

# convert the object into a dict
revision_dict = revision_instance.to_dict()
# create an instance of Revision from a dict
revision_from_dict = Revision.from_dict(revision_dict)

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