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

com.siftscience.model.Message 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 Message {
    @Expose @SerializedName("$body") private String body;
    @Expose @SerializedName("$contact_email") private String contactEmail;
    @Expose @SerializedName("$recipient_user_ids") private List recipientUserIds;
    @Expose @SerializedName("$root_content_id") private String rootContentId;
    @Expose @SerializedName("$images") private List images;
    @Expose @SerializedName("$subject") private String subject;

    public String getBody() {
        return body;
    }

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

    public String getContactEmail() {
        return contactEmail;
    }

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

    public List getImages() {
        return images;
    }

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

    public List getRecipientUserIds() {
        return recipientUserIds;
    }

    public Message setRecipientUserIds(List recipientUserIds) {
        this.recipientUserIds = recipientUserIds;
        return this;
    }

    public String getSubject() { return subject; }

    public Message setSubject(String subject) {
        this.subject = subject;
        return this;
    }

    public String getRootContentId() {
        return rootContentId;
    }

    public Message setRootContentId(String rootContentId) {
        this.rootContentId = rootContentId;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy