com.springml.salesforce.wave.model.chatter.MessageElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of salesforce-wave-api Show documentation
Show all versions of salesforce-wave-api Show documentation
Java client for Salesforce Wave API
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;
}
}