system.kanoa.quality.sheet.getStates
Description
Retrieves check sheet states.Syntax
getStates(paramsDict)Parameters:
Returns:
Dictionary
Parameter | Type | Required | Notes |
---|---|---|---|
enabled | bool | No | True to filter by enabled states |
chkShtStateId | int | No | ID of the specific check sheet state |
chkShtStateName | string | No | Name of the check sheet state |
Code Examples
# Usage example
params_dict = {'enabled': True, 'chkShtStateId': 1, 'chkShtStateName': 'Approved'}
states_data = system.kanoa.quality.sheet.getStates(paramsDict=params_dict)
print(states_data)