Type alias OkHiApplicationConfiguration

OkHiApplicationConfiguration: {
    app?: {
        build?: string;
        name?: string;
        version?: string;
    };
    context: {
        developer?: "okhi" | "external";
        mode: "sandbox" | "prod";
    };
    credentials: {
        branchId: string;
        clientKey: string;
    };
    notification?: {
        channelDescription: string;
        channelId: string;
        channelName: string;
        text: string;
        title: string;
    };
}

Type declaration

  • Optional app?: {
        build?: string;
        name?: string;
        version?: string;
    }
    • Optional build?: string
    • Optional name?: string
    • Optional version?: string
  • context: {
        developer?: "okhi" | "external";
        mode: "sandbox" | "prod";
    }
    • Optional developer?: "okhi" | "external"
    • mode: "sandbox" | "prod"
  • credentials: {
        branchId: string;
        clientKey: string;
    }
    • branchId: string
    • clientKey: string
  • Optional notification?: {
        channelDescription: string;
        channelId: string;
        channelName: string;
        text: string;
        title: string;
    }
    • channelDescription: string
    • channelId: string
    • channelName: string
    • text: string
    • title: string

Generated using TypeDoc