Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.23 KB

ImportListBulkResource.md

File metadata and controls

34 lines (25 loc) · 1.23 KB

ImportListBulkResource

Properties

Name Type Description Notes
ids List[int] [optional]
tags List[int] [optional]
apply_tags ApplyTags [optional]
enable_automatic_add bool [optional]
root_folder_path str [optional]
quality_profile_id int [optional]

Example

from lidarr.models.import_list_bulk_resource import ImportListBulkResource

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

# convert the object into a dict
import_list_bulk_resource_dict = import_list_bulk_resource_instance.to_dict()
# create an instance of ImportListBulkResource from a dict
import_list_bulk_resource_from_dict = ImportListBulkResource.from_dict(import_list_bulk_resource_dict)

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