Generic check details type. For use when no other check type is applicable. This is a placeholder and should be replaced with a more specific type if possible. Can contain any number of custom properties.
const genericCheckDetails: GenericCheckDetails = { type: 'generic', customProperty1: 'value1', customProperty2: 42, customProperty3: true,}; Copy
const genericCheckDetails: GenericCheckDetails = { type: 'generic', customProperty1: 'value1', customProperty2: 42, customProperty3: true,};
The type of check, which is 'generic' in this case.
Generic check details type. For use when no other check type is applicable. This is a placeholder and should be replaced with a more specific type if possible. Can contain any number of custom properties.
Example