| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| name | str | [optional] | |
| fields | List[ContractField] | [optional] | |
| implementation_name | str | [optional] | |
| implementation | str | [optional] | |
| config_contract | str | [optional] | |
| info_link | str | [optional] | |
| message | ProviderMessage | [optional] | |
| tags | List[int] | [optional] | |
| presets | List[ApplicationResource] | [optional] | |
| sync_level | ApplicationSyncLevel | [optional] | |
| test_command | str | [optional] |
from prowlarr.models.application_resource import ApplicationResource
# TODO update the JSON string below
json = "{}"
# create an instance of ApplicationResource from a JSON string
application_resource_instance = ApplicationResource.from_json(json)
# print the JSON string representation of the object
print(ApplicationResource.to_json())
# convert the object into a dict
application_resource_dict = application_resource_instance.to_dict()
# create an instance of ApplicationResource from a dict
application_resource_from_dict = ApplicationResource.from_dict(application_resource_dict)