Name | Type | Description | Notes |
---|---|---|---|
ids | List[int] | [optional] | |
tags | List[int] | [optional] | |
apply_tags | ApplyTags | [optional] | |
sync_level | ApplicationSyncLevel | [optional] |
from prowlarr.models.application_bulk_resource import ApplicationBulkResource
# TODO update the JSON string below
json = "{}"
# create an instance of ApplicationBulkResource from a JSON string
application_bulk_resource_instance = ApplicationBulkResource.from_json(json)
# print the JSON string representation of the object
print(ApplicationBulkResource.to_json())
# convert the object into a dict
application_bulk_resource_dict = application_bulk_resource_instance.to_dict()
# create an instance of ApplicationBulkResource from a dict
application_bulk_resource_from_dict = ApplicationBulkResource.from_dict(application_bulk_resource_dict)