ia-sdk-react-native-monorepo - v1.0.0
    Preparing search index...

    Interface IaPharmacyModule

    Interface for the Pharmacy module. Provides pharmacy details and management functionality.

    interface IaPharmacyModule {
        moduleType: Pharmacy;
        getPharmacyId(): Promise<string | null>;
        launchPharmacyDetails(): Promise<void>;
        register(): Promise<void>;
        setPharmacyId(pharmacyId: string): Promise<void>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    moduleType: Pharmacy

    The type of module this instance represents.

    Methods

    • Gets the currently selected pharmacy identifier.

      Returns Promise<string | null>

      The pharmacy ID string, or null if no pharmacy is selected.

    • Launches the pharmacy details screen experience on top of the navigation stack.

      Returns Promise<void>

    • Specifies a pharmacy identifier to be loaded into the AppSDK module.

      Parameters

      • pharmacyId: string

      Returns Promise<void>