Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 931 Bytes

QueueBulkResource.md

File metadata and controls

29 lines (20 loc) · 931 Bytes

QueueBulkResource

Properties

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

Example

from sonarr.models.queue_bulk_resource import QueueBulkResource

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

# convert the object into a dict
queue_bulk_resource_dict = queue_bulk_resource_instance.to_dict()
# create an instance of QueueBulkResource from a dict
queue_bulk_resource_from_dict = QueueBulkResource.from_dict(queue_bulk_resource_dict)

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