Name | Type | Description | Notes |
---|---|---|---|
version | int | [optional] | |
real | int | [optional] | |
is_repack | bool | [optional] |
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)