Name |
Type |
Description |
Notes |
message |
str |
Response Message |
[optional] |
from formkiq_client.models.add_attribute_response import AddAttributeResponse
# TODO update the JSON string below
json = "{}"
# create an instance of AddAttributeResponse from a JSON string
add_attribute_response_instance = AddAttributeResponse.from_json(json)
# print the JSON string representation of the object
print(AddAttributeResponse.to_json())
# convert the object into a dict
add_attribute_response_dict = add_attribute_response_instance.to_dict()
# create an instance of AddAttributeResponse from a dict
add_attribute_response_from_dict = AddAttributeResponse.from_dict(add_attribute_response_dict)
[Back to Model list] [Back to API list] [Back to README]