Model.hm_getexistingentitytypes#
- Model.hm_getexistingentitytypes()#
Returns the list of entity types that exist in the current database.
- Returns:
hwReturnStatus- Status objectHmQueryResult- Result object containing the output values:existingEntityTypes (list of strings)
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)