system.kanoa.quality.config.getCheckItemTypes
Description
Returns check item types.Syntax
getCheckItemTypes(paramsDict)Parameters:
Returns:
Dictionary
Parameter | Type | Required | Notes |
---|---|---|---|
chkItemTypeId | int | No | e.g. 1 |
chkItemTypeName | str | No | e.g. 'Check' |
enabled | bool | No | e.g. True |
Code Examples
# Usage example
params_dict = {'chkItemTypeId': 1, 'chkItemTypeName': 'Check', 'enabled': True}
check_item_type_data = system.kanoa.quality.config.getCheckItemTypes(paramsDict=params_dict)
# Process the retrieved data
for row in check_item_type_data:
print(row['chkItemTypeId'], row['chkItemTypeName'], row['enabled'])