Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 916 Bytes

UpdateChanges.md

File metadata and controls

30 lines (21 loc) · 916 Bytes

UpdateChanges

Properties

Name Type Description Notes
new List[str] [optional]
fixed List[str] [optional]

Example

from sonarr.models.update_changes import UpdateChanges

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

# convert the object into a dict
update_changes_dict = update_changes_instance.to_dict()
# create an instance of UpdateChanges from a dict
update_changes_from_dict = UpdateChanges.from_dict(update_changes_dict)

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