| Name | Type | Description | Notes |
|---|---|---|---|
| series_ids | List[int] | [optional] | |
| monitored | bool | [optional] | |
| monitor_new_items | NewItemMonitorTypes | [optional] | |
| quality_profile_id | int | [optional] | |
| series_type | SeriesTypes | [optional] | |
| season_folder | bool | [optional] | |
| root_folder_path | str | [optional] | |
| tags | List[int] | [optional] | |
| apply_tags | ApplyTags | [optional] | |
| move_files | bool | [optional] | |
| delete_files | bool | [optional] | |
| add_import_list_exclusion | bool | [optional] |
from sonarr.models.series_editor_resource import SeriesEditorResource
# TODO update the JSON string below
json = "{}"
# create an instance of SeriesEditorResource from a JSON string
series_editor_resource_instance = SeriesEditorResource.from_json(json)
# print the JSON string representation of the object
print(SeriesEditorResource.to_json())
# convert the object into a dict
series_editor_resource_dict = series_editor_resource_instance.to_dict()
# create an instance of SeriesEditorResource from a dict
series_editor_resource_from_dict = SeriesEditorResource.from_dict(series_editor_resource_dict)