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