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

com.springml.salesforce.wave.model.chatter.MessageElement Maven / Gradle / Ivy

There is a newer version: 1.0.10
Show newest version
package com.springml.salesforce.wave.model.chatter;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;

@JsonInclude(Include.NON_NULL)
public class MessageElement {
    private String type;
    private String text;
    private String id;

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getText() {
        return text;
    }

    public void setText(String text) {
        this.text = text;
    }

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy