Name |
Type |
Description |
Notes |
queue_id |
str |
Queue Identifier |
[optional] |
from formkiq_client.models.add_queue_response import AddQueueResponse
# TODO update the JSON string below
json = "{}"
# create an instance of AddQueueResponse from a JSON string
add_queue_response_instance = AddQueueResponse.from_json(json)
# print the JSON string representation of the object
print(AddQueueResponse.to_json())
# convert the object into a dict
add_queue_response_dict = add_queue_response_instance.to_dict()
# create an instance of AddQueueResponse from a dict
add_queue_response_from_dict = AddQueueResponse.from_dict(add_queue_response_dict)
[Back to Model list] [Back to API list] [Back to README]