import type * as CandidApi from "../../../index"; /** * Allocation targets describe whether the portion of a payment is being applied toward a specific service line, * claim, billing provider, or is unallocated. */ export type AllocationTarget = CandidApi.AllocationTarget.ServiceLine | CandidApi.AllocationTarget.Claim | CandidApi.AllocationTarget.BillingProviderId | CandidApi.AllocationTarget.Appointment | CandidApi.AllocationTarget.Unattributed; export declare namespace AllocationTarget { interface ServiceLine extends CandidApi.ServiceLineAllocationTarget { type: "service_line"; } interface Claim extends CandidApi.ClaimAllocationTarget { type: "claim"; } interface BillingProviderId extends CandidApi.BillingProviderAllocationTarget { type: "billing_provider_id"; } interface Appointment extends CandidApi.AppointmentAllocationTarget { type: "appointment"; } interface Unattributed { type: "unattributed"; } }