Posos Widgets JavaScript SDK
    Preparing search index...

    Interface PrescriptionDrugCost

    interface PrescriptionDrugCost {
        reimbursementRate: number | null;
        totalPackagesNeeded: number;
        totalPrescriptionCostPerDrug: {
            amount: number;
            currency: string;
            symbol: string;
        };
        totalUnitNeeded: { code: string; system: string; value: number };
        unitPrice: { amount: number; currency: string; symbol: string };
    }
    Index

    Properties

    reimbursementRate: number | null

    The drug reimbursement rate.

    totalPackagesNeeded: number

    The total packages needed.

    totalPrescriptionCostPerDrug: {
        amount: number;
        currency: string;
        symbol: string;
    }

    The drug cost.

    Type Declaration

    • amount: number

      The price amount.

    • currency: string

      The price currency (e.g., EUR).

    • symbol: string

      The symbol associated with the price currency (e.g., ).

    totalUnitNeeded: { code: string; system: string; value: number }

    The total unit needed.

    Type Declaration

    • code: string

      The unit code.

    • system: string

      The unit system.

    • value: number

      The unit value.

    unitPrice: { amount: number; currency: string; symbol: string }

    The price per unit for the drug.

    Type Declaration

    • amount: number

      The price amount.

    • currency: string

      The price currency (e.g., EUR).

    • symbol: string

      The symbol associated with the price currency (e.g., ).