File tree Expand file tree Collapse file tree 2 files changed +10
-9
lines changed
src/main/java/com/siftscience/model Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ public abstract class BaseAppBrowserSiteBrandFieldSet<T extends BaseAppBrowserSi
1010 @ Expose @ SerializedName ("$brand_name" ) private String brandName ;
1111 @ Expose @ SerializedName ("$site_country" ) private String siteCountry ;
1212 @ Expose @ SerializedName ("$site_domain" ) private String siteDomain ;
13- @ Expose @ SerializedName ("$keyless_user_id" ) private String keyLessUserId ;
1413
1514 public App getApp () {
1615 return app ;
@@ -57,12 +56,4 @@ public T setSiteDomain(String siteDomain) {
5756 return (T ) this ;
5857 }
5958
60- public String getKeyLessUserId () {
61- return keyLessUserId ;
62- }
63-
64- public T setKeyLessUserId (String keyLessUserId ) {
65- this .keyLessUserId = keyLessUserId ;
66- return (T ) this ;
67- }
6859}
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ public abstract class EventsApiRequestFieldSet<T extends EventsApiRequestFieldSe
1010 @ Expose @ SerializedName (SESSION_ID ) private String sessionId ;
1111 @ Expose @ SerializedName (TIME ) private Long time ;
1212 @ Expose @ SerializedName (IP ) private String ip ;
13+ @ Expose @ SerializedName (KEYLESS_USER_ID ) private String keyLessUserId ;
1314
1415 public T setCustomField (String key , Number val ) {
1516 return super .setCustomField (key , val );
@@ -71,4 +72,13 @@ public T setIp(String ip) {
7172 this .ip = ip ;
7273 return (T ) this ;
7374 }
75+
76+ public String getKeyLessUserId () {
77+ return keyLessUserId ;
78+ }
79+
80+ public T setKeyLessUserId (String keylessUserId ) {
81+ this .keyLessUserId = keylessUserId ;
82+ return (T ) this ;
83+ }
7484}
You can’t perform that action at this time.
0 commit comments