Name |
Type |
Description |
Notes |
message |
str |
Result message |
[optional] |
from formkiq_client.models.delete_queue_response import DeleteQueueResponse
# TODO update the JSON string below
json = "{}"
# create an instance of DeleteQueueResponse from a JSON string
delete_queue_response_instance = DeleteQueueResponse.from_json(json)
# print the JSON string representation of the object
print(DeleteQueueResponse.to_json())
# convert the object into a dict
delete_queue_response_dict = delete_queue_response_instance.to_dict()
# create an instance of DeleteQueueResponse from a dict
delete_queue_response_from_dict = DeleteQueueResponse.from_dict(delete_queue_response_dict)
[Back to Model list] [Back to API list] [Back to README]