All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.siftscience.model.Post Maven / Gradle / Ivy

There is a newer version: 3.16.0
Show newest version
package com.siftscience.model;

import java.util.List;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class Post {
    @Expose @SerializedName("$subject") private String subject;
    @Expose @SerializedName("$body") private String body;
    @Expose @SerializedName("$contact_email") private String contactEmail;
    @Expose @SerializedName("$contact_address") private Address contactAddress;
    @Expose @SerializedName("$locations") private List
locations; @Expose @SerializedName("$categories") private List categories; @Expose @SerializedName("$images") private List images; @Expose @SerializedName("$expiration_time") private Long expirationTime; public String getBody() { return body; } public Post setBody(String body) { this.body = body; return this; } public String getContactEmail() { return contactEmail; } public Post setContactEmail(String contactEmail) { this.contactEmail = contactEmail; return this; } public List getImages() { return images; } public Post setImages(List images) { this.images = images; return this; } public Address getContactAddress() { return contactAddress; } public Post setContactAddress(Address contactAddress) { this.contactAddress = contactAddress; return this; } public List
getLocations() { return locations; } public Post setLocations(List
locations) { this.locations = locations; return this; } public List getCategories() { return categories; } public Post setCategories(List categories) { this.categories = categories; return this; } public Long getExpirationTime() { return expirationTime; } public Post setExpirationTime(Long expirationTime) { this.expirationTime = expirationTime; return this; } public String getSubject() { return subject; } public Post setSubject(String subject) { this.subject = subject; return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy