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;
}
