interface IVWOOptions {
    accountId: string;
    gatewayService?: IGatewayService;
    integrations?: IIntegrationOptions;
    isDevelopmentMode?: boolean;
    logger?: LogManager;
    network?: INetworkOptions;
    pollInterval?: number;
    sdkKey: string;
    segmentation?: SegmentEvaluator;
    storage?: Record<any, any> | Connector;
    vwoBuilder?: IVWOBuilder;
}

Implemented by

Properties

accountId: string
gatewayService?: IGatewayService
integrations?: IIntegrationOptions
isDevelopmentMode?: boolean
logger?: LogManager
network?: INetworkOptions
pollInterval?: number
sdkKey: string
segmentation?: SegmentEvaluator
storage?: Record<any, any> | Connector
vwoBuilder?: IVWOBuilder