CountWithQueueDetails

Properties

Name

Type

Description

Notes

count

int

queue_infos

List[QueueDetails]

Example

from h2ogpte.rest_sync.models.count_with_queue_details import CountWithQueueDetails

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

# convert the object into a dict
count_with_queue_details_dict = count_with_queue_details_instance.to_dict()
# create an instance of CountWithQueueDetails from a dict
count_with_queue_details_from_dict = CountWithQueueDetails.from_dict(count_with_queue_details_dict)