| Name | Type | Description | Notes |
|---|---|---|---|
| namespace | EntityTypeNamespace | [optional] | |
| name | str | Entity Type Name | [optional] |
from formkiq_client.models.add_entity_type import AddEntityType
# TODO update the JSON string below
json = "{}"
# create an instance of AddEntityType from a JSON string
add_entity_type_instance = AddEntityType.from_json(json)
# print the JSON string representation of the object
print(AddEntityType.to_json())
# convert the object into a dict
add_entity_type_dict = add_entity_type_instance.to_dict()
# create an instance of AddEntityType from a dict
add_entity_type_from_dict = AddEntityType.from_dict(add_entity_type_dict)