com.ullink.slack.simpleslackapi.SlackField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simpleslackapi Show documentation
Show all versions of simpleslackapi Show documentation
A simple API to build bot running on Slack
The newest version!
package com.ullink.slack.simpleslackapi;
import com.google.gson.annotations.SerializedName;
public class SlackField {
private String title;
private String value;
@SerializedName("short")
private boolean isShort;
public SlackField(String title, String value, boolean isShort) {
this.title = title;
this.value = value;
this.isShort = isShort;
}
public String getTitle() {
return title;
}
public String getValue() {
return value;
}
public boolean isShort() {
return isShort;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy