The event that is being tracked.

Constructors

Properties

Methods

Constructors

Properties

category: string

The category of the event.

feature: string

The feature associated with the event.

name: string

The name of the event.

values: string[]

The value associated with the event.

Methods

  • Parameters

    Returns {
        category?: string;
        feature?: string;
        name?: string;
        values?: string[];
        serialize?(config?): { feature?: string | undefined; category?: string | undefined; name?: string | undefined; values?: string[] | undefined; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; };
    }

    • Optional category?: string

      The category of the event.

    • Optional feature?: string

      The feature associated with the event.

    • Optional name?: string

      The name of the event.

    • Optional values?: string[]

      The value associated with the event.

    • serialize?:function
      • Parameters

        Returns { feature?: string | undefined; category?: string | undefined; name?: string | undefined; values?: string[] | undefined; serialize?: ((config?: ToJsonConfiguration | undefined) => ...) | undefined; }