@oystehr/sdk
Version:
Oystehr SDK
19 lines (17 loc) • 537 B
text/typescript
// AUTOGENERATED -- DO NOT EDIT
export interface PaymentMethodDeleteParams {
/**
* An ID reference to a FHIR Patient resource who is the beneficiary, in the format: `some-uuid`.
*/
beneficiaryPatientId: string;
/**
* An ID reference to a FHIR Patient resource who is the payor, in the format: `some-uuid`.
*
* If not specified, beneficiary is also assumed to be the payor.
*/
payorPatientId?: string;
/**
* An ID reference to a payment method: `pm_someAlphaNumbericId`.
*/
paymentMethodId: string;
}