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

org.riversun.xternal.simpleslackapi.SlackField Maven / Gradle / Ivy

The newest version!
package org.riversun.xternal.simpleslackapi;

public class SlackField {
    private String  title;
    private String  value;
    private boolean isShort;

    public SlackField() {

    }

    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