Skip to main content

system.kanoa.quality.config.getCheckItemTypes

Requires kanoaQDS license

Description

Returns check item types.

Syntax

getCheckItemTypes(paramsDict)

Parameters:
  • paramsDict (dict)

  • Returns:
  • checkItemTypeData (pyDataset): Check item type data.
  • Dictionary

    ParameterTypeRequiredNotes
    chkItemTypeIdintNoe.g. 1
    chkItemTypeNamestrNoe.g. 'Check'
    enabledboolNoe.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'])