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:
hwReturnStatus- Status objectHmQueryResult- Result object containing the output values:entityTypeList (list of strings)
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)