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

com.siftscience.model.Profile 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 Profile {
    @Expose @SerializedName("$body") private String body;
    @Expose @SerializedName("$contact_email") private String contactEmail;
    @Expose @SerializedName("$contact_address") private Address contactAddress;
    @Expose @SerializedName("$categories") private List categories;
    @Expose @SerializedName("$images") private List images;

    public String getBody() {
        return body;
    }

    public Profile setBody(String body) {
        this.body = body;
        return this;
    }

    public String getContactEmail() {
        return contactEmail;
    }

    public Profile setContactEmail(String contactEmail) {
        this.contactEmail = contactEmail;
        return this;
    }

    public List getImages() {
        return images;
    }

    public Profile setImages(List images) {
        this.images = images;
        return this;
    }

    public Address getContactAddress() {
        return contactAddress;
    }

    public Profile setContactAddress(Address contactAddress) {
        this.contactAddress = contactAddress;
        return this;
    }

    public List getCategories() {
        return categories;
    }

    public Profile setCategories(List categories) {
        this.categories = categories;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy