Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 983 Bytes

BlocklistBulkResource.md

File metadata and controls

29 lines (20 loc) · 983 Bytes

BlocklistBulkResource

Properties

Name Type Description Notes
ids List[int] [optional]

Example

from sonarr.models.blocklist_bulk_resource import BlocklistBulkResource

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

# convert the object into a dict
blocklist_bulk_resource_dict = blocklist_bulk_resource_instance.to_dict()
# create an instance of BlocklistBulkResource from a dict
blocklist_bulk_resource_from_dict = BlocklistBulkResource.from_dict(blocklist_bulk_resource_dict)

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