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

com.manywho.sdk.api.social.NewMessage Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package com.manywho.sdk.api.social;

import java.util.List;

public class NewMessage {
    private String senderId;
    private String messageText;
    private String repliedTo;
    private List uploadedFiles;
    private List mentionedWhos;

    public String getSenderId() {
        return senderId;
    }

    public NewMessage setSenderId(String senderId) {
        this.senderId = senderId;
        return this;
    }

    public String getMessageText() {
        return messageText;
    }

    public NewMessage setMessageText(String messageText) {
        this.messageText = messageText;
        return this;
    }

    public String getRepliedTo() {
        return repliedTo;
    }

    public NewMessage setRepliedTo(String repliedTo) {
        this.repliedTo = repliedTo;
        return this;
    }

    public List getUploadedFiles() {
        return uploadedFiles;
    }

    public NewMessage setUploadedFiles(List uploadedFiles) {
        this.uploadedFiles = uploadedFiles;
        return this;
    }

    public List getMentionedWhos() {
        return mentionedWhos;
    }

    public NewMessage setMentionedWhos(List mentionedWhos) {
        this.mentionedWhos = mentionedWhos;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy