-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathBaseContentFieldSet.java
More file actions
48 lines (38 loc) · 1.31 KB
/
BaseContentFieldSet.java
File metadata and controls
48 lines (38 loc) · 1.31 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
package com.siftscience.model;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public abstract class BaseContentFieldSet<T extends BaseContentFieldSet<T>>
extends BaseAppBrowserSiteBrandFieldSet<T> {
@Expose @SerializedName("$content_id") private String contentId;
@Expose @SerializedName("$status") private String status;
@Expose @SerializedName(USER_EMAIL) private String userEmail;
@Expose @SerializedName(VERIFICATION_PHONE_NUMBER) private String verificationPhoneNumber;
public String getContentId() {
return contentId;
}
public T setContentId(String contentId) {
this.contentId = contentId;
return (T) this;
}
public String getStatus() {
return status;
}
public T setStatus(String status) {
this.status = status;
return (T) this;
}
public String getVerificationPhoneNumber() {
return verificationPhoneNumber;
}
public T setVerificationPhoneNumber(String verificationPhoneNumber) {
this.verificationPhoneNumber = verificationPhoneNumber;
return (T) this;
}
public String getUserEmail() {
return userEmail;
}
public T setUserEmail(String userEmail) {
this.userEmail = userEmail;
return (T) this;
}
}