Name | Type | Description | Notes |
---|---|---|---|
id | int | [optional] | |
list_sync_level | ListSyncLevelType | [optional] | |
list_sync_tag | int | [optional] |
from sonarr.models.import_list_config_resource import ImportListConfigResource
# TODO update the JSON string below
json = "{}"
# create an instance of ImportListConfigResource from a JSON string
import_list_config_resource_instance = ImportListConfigResource.from_json(json)
# print the JSON string representation of the object
print(ImportListConfigResource.to_json())
# convert the object into a dict
import_list_config_resource_dict = import_list_config_resource_instance.to_dict()
# create an instance of ImportListConfigResource from a dict
import_list_config_resource_from_dict = ImportListConfigResource.from_dict(import_list_config_resource_dict)