Model.hm_getexistingentitytypes#

Model.hm_getexistingentitytypes()#

Returns the list of entity types that exist in the current database.

Returns:

Example#

Get the list of exist entity types#
import hm
import hm.entities as ent

model = hm.Model()

_, result = model.hm_getexistingentitytypes()

print("Existing entity types:", result.existingEntityTypes)