![JAR search and dependency download from the Maven repository](/logo.png)
com.siftscience.model.Review Maven / Gradle / Ivy
The newest version!
package com.siftscience.model;
import java.util.List;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class Review {
@Expose @SerializedName("$subject") private String subject;
@Expose @SerializedName("$body") private String body;
@Expose @SerializedName("$contact_email") private String contactEmail;
@Expose @SerializedName("$locations") private List locations;
@Expose @SerializedName("$reviewed_content_id") private String reviewedContentId;
@Expose @SerializedName("$images") private List images;
@Expose @SerializedName("$rating") private Double rating;
public String getBody() {
return body;
}
public Review setBody(String body) {
this.body = body;
return this;
}
public String getContactEmail() {
return contactEmail;
}
public Review setContactEmail(String contactEmail) {
this.contactEmail = contactEmail;
return this;
}
public List getImages() {
return images;
}
public Review setImages(List images) {
this.images = images;
return this;
}
public List getLocations() {
return locations;
}
public Review setLocations(List locations) {
this.locations = locations;
return this;
}
public String getSubject() {
return subject;
}
public Review setSubject(String subject) {
this.subject = subject;
return this;
}
public Double getRating() {
return rating;
}
public Review setRating(Double rating) {
this.rating = rating;
return this;
}
public String getReviewedContentId() {
return reviewedContentId;
}
public Review setReviewedContentId(String reviewedContentId) {
this.reviewedContentId = reviewedContentId;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy