UNPKG

@oystehr/sdk

Version:

Oystehr SDK

17 lines (16 loc) 536 B
export interface PaymentMethodSetDefaultParams { /** * 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; }