Interface IapticConfig

Configuration for Iaptic React Native SDK

interface IapticConfig {
    applicationUsername?: string;
    appName: string;
    baseUrl?: string;
    iosBundleId?: string;
    products?: IapticProductDefinition[];
    publicKey: string;
    showAlerts?: boolean;
    verbosity?: IapticVerbosity;
}

Hierarchy

  • IapticStoreConfig
    • IapticConfig

Properties

applicationUsername?: string
appName: string
baseUrl?: string

The base URL of the iaptic validator

iosBundleId?: string
publicKey: string
showAlerts?: boolean

Disable alert by setting this to false.

By default, IapticRN will display relevant alerts to the user when something goes wrong.

Default is true.

verbosity?: IapticVerbosity