| Name |
Type |
Description |
Notes |
| entity_id |
str |
Entity Identifier |
[optional] |
from formkiq_client.models.add_entity_response import AddEntityResponse
# TODO update the JSON string below
json = "{}"
# create an instance of AddEntityResponse from a JSON string
add_entity_response_instance = AddEntityResponse.from_json(json)
# print the JSON string representation of the object
print(AddEntityResponse.to_json())
# convert the object into a dict
add_entity_response_dict = add_entity_response_instance.to_dict()
# create an instance of AddEntityResponse from a dict
add_entity_response_from_dict = AddEntityResponse.from_dict(add_entity_response_dict)
[Back to Model list] [Back to API list] [Back to README]