Model.hm_getmodelcheckenttype#
- Model.hm_getmodelcheckenttype(display_name)#
Returns the entity type for the specified Model Check check display name.
- Parameters:
display_name (hwString) – The check display name.
- Returns:
hwReturnStatus- Status objectHmQueryResult- Result object containing the output values:entityType (str)
Example#
Get the entity type for the check named “ Unused Materials “#import hm import hm.entities as ent model = hm.Model() _, result = model.hm_getmodelcheckenttype(display_name="Unused Materials") print("entityType:", result.entityType)