Name | Type | Description | Notes |
---|---|---|---|
message | str | Result message | [optional] |
from formkiq_client.models.set_response import SetResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SetResponse from a JSON string
set_response_instance = SetResponse.from_json(json)
# print the JSON string representation of the object
print(SetResponse.to_json())
# convert the object into a dict
set_response_dict = set_response_instance.to_dict()
# create an instance of SetResponse from a dict
set_response_from_dict = SetResponse.from_dict(set_response_dict)