File tree Expand file tree Collapse file tree
src/main/java/com/siftscience/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ public abstract class BaseContentFieldSet<T extends BaseContentFieldSet<T>>
77 extends BaseAppBrowserSiteBrandFieldSet <T > {
88 @ Expose @ SerializedName ("$content_id" ) private String contentId ;
99 @ Expose @ SerializedName ("$status" ) private String status ;
10+ @ Expose @ SerializedName (USER_EMAIL ) private String userEmail ;
1011 @ Expose @ SerializedName (VERIFICATION_PHONE_NUMBER ) private String verificationPhoneNumber ;
1112
1213 public String getContentId () {
@@ -35,4 +36,13 @@ public T setVerificationPhoneNumber(String verificationPhoneNumber) {
3536 this .verificationPhoneNumber = verificationPhoneNumber ;
3637 return (T ) this ;
3738 }
39+
40+ public String getUserEmail () {
41+ return userEmail ;
42+ }
43+
44+ public T setUserEmail (String userEmail ) {
45+ this .userEmail = userEmail ;
46+ return (T ) this ;
47+ }
3848}
Original file line number Diff line number Diff line change @@ -30,9 +30,12 @@ public String toString() {
3030 }
3131 }
3232
33+ @ Expose @ SerializedName ("$brand_name" ) private String brandName ;
3334 @ Expose @ SerializedName ("$content_id" ) private String contentId ;
3435 @ Expose @ SerializedName ("$flagged_by" ) private String flaggedBy ;
3536 @ Expose @ SerializedName ("$reason" ) private String reason ;
37+ @ Expose @ SerializedName ("$site_country" ) private String siteCountry ;
38+ @ Expose @ SerializedName ("$site_domain" ) private String siteDomain ;
3639 @ Expose @ SerializedName (USER_EMAIL ) private String userEmail ;
3740 @ Expose @ SerializedName (VERIFICATION_PHONE_NUMBER ) private String verificationPhoneNumber ;
3841
@@ -85,4 +88,31 @@ public FlagContentFieldSet setVerificationPhoneNumber(String verificationPhoneNu
8588 this .verificationPhoneNumber = verificationPhoneNumber ;
8689 return this ;
8790 }
91+
92+ public String getSiteDomain () {
93+ return siteDomain ;
94+ }
95+
96+ public FlagContentFieldSet setSiteDomain (String siteDomain ) {
97+ this .siteDomain = siteDomain ;
98+ return this ;
99+ }
100+
101+ public String getSiteCountry () {
102+ return siteCountry ;
103+ }
104+
105+ public FlagContentFieldSet setSiteCountry (String siteCountry ) {
106+ this .siteCountry = siteCountry ;
107+ return this ;
108+ }
109+
110+ public String getBrandName () {
111+ return brandName ;
112+ }
113+
114+ public FlagContentFieldSet setBrandName (String brandName ) {
115+ this .brandName = brandName ;
116+ return this ;
117+ }
88118}
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ public class Review {
1111 @ Expose @ SerializedName ("$contact_email" ) private String contactEmail ;
1212 @ Expose @ SerializedName ("$locations" ) private List <Address > locations ;
1313 @ Expose @ SerializedName ("$reviewed_content_id" ) private String reviewedContentId ;
14+ @ Expose @ SerializedName ("$reviewed_user_id" ) private String reviewedUserId ;
1415 @ Expose @ SerializedName ("$images" ) private List <Image > images ;
1516 @ Expose @ SerializedName ("$rating" ) private Double rating ;
1617
@@ -76,4 +77,13 @@ public Review setReviewedContentId(String reviewedContentId) {
7677 this .reviewedContentId = reviewedContentId ;
7778 return this ;
7879 }
80+
81+ public String getReviewedUserId () {
82+ return reviewedUserId ;
83+ }
84+
85+ public Review setReviewedUserId (String reviewedUserId ) {
86+ this .reviewedUserId = reviewedUserId ;
87+ return this ;
88+ }
7989}
You can’t perform that action at this time.
0 commit comments