Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

MonitoringOptions.md

File metadata and controls

31 lines (22 loc) · 1.05 KB

MonitoringOptions

Properties

Name Type Description Notes
ignore_episodes_with_files bool [optional]
ignore_episodes_without_files bool [optional]
monitor MonitorTypes [optional]

Example

from sonarr.models.monitoring_options import MonitoringOptions

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

# convert the object into a dict
monitoring_options_dict = monitoring_options_instance.to_dict()
# create an instance of MonitoringOptions from a dict
monitoring_options_from_dict = MonitoringOptions.from_dict(monitoring_options_dict)

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