Name | Type | Description | Notes |
---|---|---|---|
name | str | Name of Queue | [optional] |
queue_id | str | Queue identifier | [optional] |
from formkiq_client.models.queue import Queue
# TODO update the JSON string below
json = "{}"
# create an instance of Queue from a JSON string
queue_instance = Queue.from_json(json)
# print the JSON string representation of the object
print(Queue.to_json())
# convert the object into a dict
queue_dict = queue_instance.to_dict()
# create an instance of Queue from a dict
queue_from_dict = Queue.from_dict(queue_dict)