Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

ImportListConfigResource.md

File metadata and controls

31 lines (22 loc) · 1.12 KB

ImportListConfigResource

Properties

Name Type Description Notes
id int [optional]
list_sync_level ListSyncLevelType [optional]
list_sync_tag int [optional]

Example

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)

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