11package com .siftscience .model ;
22
3+ import java .util .List ;
4+
35import com .google .gson .annotations .Expose ;
46import com .google .gson .annotations .SerializedName ;
57
@@ -9,6 +11,10 @@ public static LoginFieldSet fromJson(String json) {
911 }
1012
1113 @ Expose @ SerializedName ("$login_status" ) private String loginStatus ;
14+ @ Expose @ SerializedName ("$failure_reason" ) private String failureReason ;
15+ @ Expose @ SerializedName ("$username" ) private String username ;
16+ @ Expose @ SerializedName ("$social_sign_on_type" ) private String socialSignOnType ;
17+ @ Expose @ SerializedName ("$account_types" ) private List <String > accountTypes ;
1218
1319 @ Override
1420 public String getEventType () {
@@ -23,4 +29,34 @@ public LoginFieldSet setLoginStatus(String loginStatus) {
2329 this .loginStatus = loginStatus ;
2430 return this ;
2531 }
32+
33+ public String getFailureReason () { return failureReason ; }
34+
35+ public LoginFieldSet setFailureReason (String failureReason ) {
36+ this .failureReason = failureReason ;
37+ return this ;
38+ }
39+
40+ public String getUsername () { return username ; }
41+
42+ public LoginFieldSet setUsername (String username ) {
43+ this .username = username ;
44+ return this ;
45+ }
46+
47+ public String getSocialSignOnType () { return socialSignOnType ; }
48+
49+ public LoginFieldSet setSocialSignOnType (String socialSignOnType ) {
50+ this .socialSignOnType = socialSignOnType ;
51+ return this ;
52+ }
53+
54+ public List <String > getAccountTypes () {
55+ return accountTypes ;
56+ }
57+
58+ public LoginFieldSet setAccountTypes (List <String > accountTypes ) {
59+ this .accountTypes = accountTypes ;
60+ return this ;
61+ }
2662}
0 commit comments