Conditional Patient Responsibility

Conditional Patient Responsibility, explained in more detail here, is supported by the SDK.

Pass a clinicalInfo field in the hard eligibility submit() call. The value should mirror the field in the ServiceEligibility API.

1const { submit } = useHardEligibilitySubmit()
2
3submit({
4 clinicalInfo: {
5 diagnoses: ["...", "..."],
6 },
7})