QueueDetails

Properties

Name

Type

Description

Notes

name

str

length

int

Example

from h2ogpte.rest_sync.models.queue_details import QueueDetails

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

# convert the object into a dict
queue_details_dict = queue_details_instance.to_dict()
# create an instance of QueueDetails from a dict
queue_details_from_dict = QueueDetails.from_dict(queue_details_dict)