Skip to main content

system.kanoa.quality.sheet.getSheetTypes

Requires kanoaQDS license

Description

Retrieves check sheet types.

Syntax

getSheetTypes(paramsDict)

Parameters:
  • paramsDict (dictionary): Dictionary containing optional parameters.

  • Returns:
  • data (pyDataset): PyDataset containing check sheet type information.
  • Dictionary

    ParameterTypeRequiredNotes
    pathstringNoPath of the check sheet type
    chkShtTypeIdintNoID of the specific check sheet type
    parentIdintNoID of the parent check sheet type
    enabledboolNoTrue to filter by enabled check sheet types
    chkShtTypeNamestringNoName of the check sheet type

    Code Examples

    # Usage example
    params_dict = {'enabled': True, 'chkShtTypeId': 1, 'chkShtTypeName': 'Approved'}
    sheet_types_data = system.kanoa.quality.sheet.getSheetTypes(paramsDict=params_dict)

    print(sheet_types_data)