/** * Finix API */ /** * Optional object detailing [specific healthcare amounts](/docs/guides/making-a-payment/hsa-fsa/). */ export declare class AdditionalHealthcareData { /** * The amount used for clinic and office visits such as a copay amount. */ 'clinicAmount'?: number | null; /** * The amount used for dental related expenses. */ 'dentalAmount'?: number | null; /** * The amount used to purchase perscriptions and medications. */ 'prescriptionAmount'?: number | null; /** * The amount used for vision related expenses. */ 'visionAmount'?: number | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }