@moloco-rmp/event-api-client - v1.1.2
    Preparing search index...

    Type Alias InsertEventParams

    type InsertEventParams = {
        channelType: ChannelType;
        decisionTrackId?: string;
        device?: {
            advertisingId?: string;
            ip?: string;
            language?: string;
            model?: string;
            os: string;
            osVersion?: string;
            persistentId?: string;
            ua?: string;
            uniqueDeviceId?: string;
        };
        eventType: RetailEventType;
        id?: string;
        items?: {
            id: string;
            itemGroupId?: string;
            price?: { amount: number; currency: string };
            quantity: number;
            sellerId?: string;
        }[];
        pageId?: string;
        referrerPageId?: string;
        revenue?: { amount: number; currency: string };
        searchQuery?: string;
        sessionId?: string;
        shippingCharge?: { amount: number; currency: string };
        timestamp: number;
        userId?: string;
    }
    Index

    Properties

    channelType: ChannelType
    decisionTrackId?: string
    device?: {
        advertisingId?: string;
        ip?: string;
        language?: string;
        model?: string;
        os: string;
        osVersion?: string;
        persistentId?: string;
        ua?: string;
        uniqueDeviceId?: string;
    }
    eventType: RetailEventType
    id?: string
    items?: {
        id: string;
        itemGroupId?: string;
        price?: { amount: number; currency: string };
        quantity: number;
        sellerId?: string;
    }[]
    pageId?: string
    referrerPageId?: string
    revenue?: { amount: number; currency: string }
    searchQuery?: string
    sessionId?: string
    shippingCharge?: { amount: number; currency: string }
    timestamp: number
    userId?: string