Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

IndexerFlagResource.md

File metadata and controls

31 lines (22 loc) · 1.01 KB

IndexerFlagResource

Properties

Name Type Description Notes
id int [optional]
name str [optional]
name_lower str [optional] [readonly]

Example

from sonarr.models.indexer_flag_resource import IndexerFlagResource

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

# convert the object into a dict
indexer_flag_resource_dict = indexer_flag_resource_instance.to_dict()
# create an instance of IndexerFlagResource from a dict
indexer_flag_resource_from_dict = IndexerFlagResource.from_dict(indexer_flag_resource_dict)

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