Posos Widgets JavaScript SDK
    Preparing search index...

    Interface PrescriptionExportPayload

    interface PrescriptionExportPayload {
        comment: string | null;
        cost: { amount: number; currency: string; symbol: string } | null;
        dbUpdatedAt: string;
        dbVersion: string;
        elements: (
            | PrescriptionElementDrug
            | PrescriptionElementFreeText
            | PrescriptionElementMedicalDevice
        )[];
        endDate: string
        | null;
        id: string;
        startDate: string;
    }
    Index

    Properties

    comment: string | null

    The comment associated with the prescription.

    cost: { amount: number; currency: string; symbol: string } | null

    The total cost of the prescription.

    Type Declaration

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

        The price amount.

      • currency: string

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

      • symbol: string

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

    • null
    dbUpdatedAt: string

    The medical database revision date.

    dbVersion: string

    The medical database version.

    The list of prescription elements.

    endDate: string | null

    The prescription end date in YYYY-MM-DD format.

    id: string

    The unique identifier of the prescription.

    startDate: string

    The prescription start date in YYYY-MM-DD format.