Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 835 Bytes

Queue.md

File metadata and controls

30 lines (21 loc) · 835 Bytes

Queue

Properties

Name Type Description Notes
name str Name of Queue [optional]
queue_id str Queue identifier [optional]

Example

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)

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