Model.hm_getmodelchecksupportedentities#

Model.hm_getmodelchecksupportedentities()#

Returns the list of entity types that have checks for the current profile, using the loaded default config file or user defined custom config file.

Returns:

Example#

Get the list of entity types that have checks#
import hm
import hm.entities as ent

model = hm.Model()

_, result = model.hm_getmodelchecksupportedentities()

print("entityTypeList:", result.entityTypeList)