Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 981 Bytes

File metadata and controls

30 lines (21 loc) · 981 Bytes

AddEntityType

Properties

Name Type Description Notes
namespace EntityTypeNamespace [optional]
name str Entity Type Name [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]