-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathVerificationFieldSet.java
More file actions
80 lines (62 loc) · 2.29 KB
/
Copy pathVerificationFieldSet.java
File metadata and controls
80 lines (62 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package com.siftscience.model;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class VerificationFieldSet extends BaseAppBrowserSiteBrandFieldSet<VerificationFieldSet> {
public static VerificationFieldSet fromJson(String json) {
return gson.fromJson(json, VerificationFieldSet.class);
}
@Expose @SerializedName("$status") private String status;
@Expose @SerializedName("$verification_type") private String verificationType;
@Expose @SerializedName("$verified_value") private String verifiedValue;
@Expose @SerializedName("$reason") private String reason;
@Expose @SerializedName("$verified_event") private String verifiedEvent;
@Expose @SerializedName("$verified_entity_id") private String verifiedEntityId;
@Expose @SerializedName("$kyc") private Kyc kyc;
@Override
public String getEventType() {
return "$verification";
}
public String getStatus() {
return status;
}
public VerificationFieldSet setStatus(String status) {
this.status = status;
return this;
}
public String getVerificationType() {
return verificationType;
}
public VerificationFieldSet setVerificationType(String verificationType) {
this.verificationType = verificationType;
return this;
}
public String getVerifiedValue() {
return verifiedValue;
}
public VerificationFieldSet setVerifiedValue(String verifiedValue) {
this.verifiedValue = verifiedValue;
return this;
}
public String getReason() { return reason; }
public VerificationFieldSet setReason(String reason) {
this.reason = reason;
return this;
}
public String getVerifiedEvent() { return verifiedEvent; }
public VerificationFieldSet setVerifiedEvent(String verifiedEvent) {
this.verifiedEvent = verifiedEvent;
return this;
}
public String getVerifiedEntityId() { return verifiedEntityId; }
public VerificationFieldSet setVerifiedEntityId(String verifiedEntityId) {
this.verifiedEntityId = verifiedEntityId;
return this;
}
public Kyc getKyc() {
return kyc;
}
public VerificationFieldSet setKyc(Kyc kyc) {
this.kyc = kyc;
return this;
}
}