Name |
Type |
Description |
Notes |
name |
str |
Queue name |
[optional] |
from formkiq_client.models.get_queue_response import GetQueueResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetQueueResponse from a JSON string
get_queue_response_instance = GetQueueResponse.from_json(json)
# print the JSON string representation of the object
print(GetQueueResponse.to_json())
# convert the object into a dict
get_queue_response_dict = get_queue_response_instance.to_dict()
# create an instance of GetQueueResponse from a dict
get_queue_response_from_dict = GetQueueResponse.from_dict(get_queue_response_dict)
[Back to Model list] [Back to API list] [Back to README]