Posos Widgets JavaScript SDK
    Preparing search index...

    Interface PrescriptionContextPayload

    interface PrescriptionContextPayload {
        comment?: string | null;
        elements?: (
            | PrescriptionImportElementDrug
            | PrescriptionImportElementFreeText
            | PrescriptionImportElementMedicalDevice
        )[];
        patientId: string;
        patientProfile: PatientProfile;
        sessionId: string;
    }
    Index

    Properties

    comment?: string | null

    If provided, the prescription comment will be set to the specified value.

    To clear the prescription comment, pass null as the value.

    The list of elements to be imported to the ongoing prescription.

    patientId: string

    The unique patient identifier.

    patientProfile: PatientProfile

    The patient’s profile data.

    sessionId: string

    The unique identifier of the ongoing prescription session.