react-native-okhi
    Preparing search index...

    Type Alias OkHiAuth

    Authentication credentials for the OkHi platform.

    These credentials are provided by OkHi when you register your application. You can find them in your OkHi dashboard under API Keys.

    const auth: OkHiAuth = {
    branchId: 'your_branch_id',
    clientKey: 'your_client_key'
    };

    OkHiLogin - Used within the login configuration

    type OkHiAuth = {
        branchId: string;
        clientKey: string;
        env?: string;
    }
    Index

    Properties

    branchId: string

    Your unique OkHi branch identifier. Obtained from the OkHi dashboard.

    clientKey: string

    Your OkHi client API key.

    env?: string