Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.21 KB

ReleaseProfileResource.md

File metadata and controls

35 lines (26 loc) · 1.21 KB

ReleaseProfileResource

Properties

Name Type Description Notes
id int [optional]
name str [optional]
enabled bool [optional]
required List[str] [optional]
ignored List[str] [optional]
indexer_id int [optional]
tags List[int] [optional]

Example

from sonarr.models.release_profile_resource import ReleaseProfileResource

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

# convert the object into a dict
release_profile_resource_dict = release_profile_resource_instance.to_dict()
# create an instance of ReleaseProfileResource from a dict
release_profile_resource_from_dict = ReleaseProfileResource.from_dict(release_profile_resource_dict)

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