Skip to content

Latest commit

 

History

History
59 lines (50 loc) · 2.42 KB

IndexerResource.md

File metadata and controls

59 lines (50 loc) · 2.42 KB

IndexerResource

Properties

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[IndexerResource] [optional]
indexer_urls List[str] [optional]
legacy_urls List[str] [optional]
definition_name str [optional]
description str [optional]
language str [optional]
encoding str [optional]
enable bool [optional]
redirect bool [optional]
supports_rss bool [optional]
supports_search bool [optional]
supports_redirect bool [optional]
supports_pagination bool [optional]
app_profile_id int [optional]
protocol DownloadProtocol [optional]
privacy IndexerPrivacy [optional]
capabilities IndexerCapabilityResource [optional]
priority int [optional]
download_client_id int [optional]
added datetime [optional]
status IndexerStatusResource [optional]
sort_name str [optional]

Example

from prowlarr.models.indexer_resource import IndexerResource

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

# convert the object into a dict
indexer_resource_dict = indexer_resource_instance.to_dict()
# create an instance of IndexerResource from a dict
indexer_resource_from_dict = IndexerResource.from_dict(indexer_resource_dict)

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