ReportFunnelCustomEvent
AndroidiOSWindows
If you were looking for the method for use with Unreal Engine, see ReportFunnelCustomEvent for Unreal Engine SDK.
If you were looking for the method for use with Unreal Engine, see ReportFunnelCustomEvent for Unreal Engine SDK.
A project will be able to customize funnel events with this interface. Data reported by the client is used to calculate the conversion rate of the funnel analysis. The interface will be called after the code corresponding to each funnel event is executed to report data.
Function definition
public static void ReportFunnelCustomEvent(string l1_event_name,string l2_event_name, int error_code = 0)
Input parameters
Parameter | Type | Description | Remark |
---|---|---|---|
l1_event_name | string | custom l1 event name | Required |
l2_event_name | string | custom l2 event name | Required |
error_code | int | error code, default value is 0. 0 denotes success, other values denote failure | Optional |
Code sample
string l1_event_name = "l1_event_name";
string l2_event_name = "l2_event_name";
int error_code = 0;
INTLAnalytics.ReportFunnelCustomEvent(l1_event_name,l2_event_name, error_code);