20
20
21
21
public class Conversion extends Event {
22
22
23
- private String visitorId ;
24
- private long timestamp ;
25
- private String projectId ;
26
- private String accountId ;
27
- private List <Feature > userFeatures ;
28
- private List < LayerState > layerStates ;
29
- private String eventEntityId ;
30
- private String eventName ;
31
- private List < EventMetric > eventMetrics ;
32
- private List < Feature > eventFeatures ;
33
- private boolean isGlobalHoldback ;
34
- private boolean anonymizeIP ;
35
- private String sessionId ;
36
- private String revision ;
23
+ private String accountId ;
24
+ private boolean anonymizeIP ;
25
+ private String eventEntityId ;
26
+ private List < Feature > eventFeatures ;
27
+ private List <EventMetric > eventMetrics ;
28
+ private String eventName ;
29
+ private boolean isGlobalHoldback ;
30
+ private List < LayerState > layerStates ;
31
+ private String projectId ;
32
+ private String revision ;
33
+ private String sessionId ;
34
+ private long timestamp ;
35
+ private List < Feature > userFeatures ;
36
+ private String visitorId ;
37
37
38
38
public Conversion () { }
39
39
@@ -42,27 +42,27 @@ public Conversion(String visitorId, long timestamp, String projectId, String acc
42
42
List <EventMetric > eventMetrics , List <Feature > eventFeatures , boolean isGlobalHoldback ,
43
43
String revision , boolean anonymizeIP ) {
44
44
this (visitorId , timestamp , projectId , accountId , userFeatures , layerStates , eventEntityId , eventName ,
45
- eventMetrics , eventFeatures , isGlobalHoldback , anonymizeIP , revision , null );
45
+ eventMetrics , eventFeatures , isGlobalHoldback , anonymizeIP , revision , null );
46
46
}
47
47
48
48
public Conversion (String visitorId , long timestamp , String projectId , String accountId , List <Feature > userFeatures ,
49
49
List <LayerState > layerStates , String eventEntityId , String eventName ,
50
50
List <EventMetric > eventMetrics , List <Feature > eventFeatures , boolean isGlobalHoldback ,
51
51
boolean anonymizeIP , String revision , String sessionId ) {
52
- this .visitorId = visitorId ;
53
- this .timestamp = timestamp ;
54
- this .projectId = projectId ;
55
52
this .accountId = accountId ;
56
- this .userFeatures = userFeatures ;
57
- this .layerStates = layerStates ;
53
+ this .anonymizeIP = anonymizeIP ;
58
54
this .eventEntityId = eventEntityId ;
59
- this .eventName = eventName ;
60
- this .eventMetrics = eventMetrics ;
61
55
this .eventFeatures = eventFeatures ;
56
+ this .eventMetrics = eventMetrics ;
57
+ this .eventName = eventName ;
62
58
this .isGlobalHoldback = isGlobalHoldback ;
63
- this .anonymizeIP = anonymizeIP ;
59
+ this .layerStates = layerStates ;
60
+ this .projectId = projectId ;
64
61
this .revision = revision ;
65
62
this .sessionId = sessionId ;
63
+ this .timestamp = timestamp ;
64
+ this .userFeatures = userFeatures ;
65
+ this .visitorId = visitorId ;
66
66
}
67
67
68
68
public String getVisitorId () {
@@ -220,20 +220,20 @@ public int hashCode() {
220
220
@ Override
221
221
public String toString () {
222
222
return "Conversion{" +
223
- "visitorId='" + visitorId + '\'' +
224
- ", timestamp=" + timestamp +
225
- ", projectId='" + projectId + '\'' +
226
- ", accountId='" + accountId + '\'' +
227
- ", userFeatures=" + userFeatures +
228
- ", layerStates=" + layerStates +
223
+ "accountId='" + accountId + '\'' +
224
+ ", anonymizeIP=" + anonymizeIP +
229
225
", eventEntityId='" + eventEntityId + '\'' +
230
- ", eventName='" + eventName + '\'' +
231
- ", eventMetrics=" + eventMetrics +
232
226
", eventFeatures=" + eventFeatures +
227
+ ", eventMetrics=" + eventMetrics +
228
+ ", eventName='" + eventName + '\'' +
233
229
", isGlobalHoldback=" + isGlobalHoldback +
234
- ", anonymizeIP =" + anonymizeIP +
235
- ", sessionId ='" + sessionId + '\'' +
230
+ ", layerStates =" + layerStates +
231
+ ", projectId ='" + projectId + '\'' +
236
232
", revision='" + revision + '\'' +
233
+ ", sessionId='" + sessionId + '\'' +
234
+ ", timestamp=" + timestamp +
235
+ ", userFeatures=" + userFeatures +
236
+ ", visitorId='" + visitorId + '\'' +
237
237
'}' ;
238
238
}
239
239
}
0 commit comments