Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.15 KB

AppProfileResource.md

File metadata and controls

34 lines (25 loc) · 1.15 KB

AppProfileResource

Properties

Name Type Description Notes
id int [optional]
name str [optional]
enable_rss bool [optional]
enable_automatic_search bool [optional]
enable_interactive_search bool [optional]
minimum_seeders int [optional]

Example

from prowlarr.models.app_profile_resource import AppProfileResource

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

# convert the object into a dict
app_profile_resource_dict = app_profile_resource_instance.to_dict()
# create an instance of AppProfileResource from a dict
app_profile_resource_from_dict = AppProfileResource.from_dict(app_profile_resource_dict)

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