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

io.dangernoodle.slack.events.SlackReplyToEvent Maven / Gradle / Ivy

The newest version!
package io.dangernoodle.slack.events;

import io.dangernoodle.slack.objects.SlackError;


public class SlackReplyToEvent extends SlackEvent
{
    private SlackError error;

    private boolean ok;

    private long replyTo;

    private String text;

    private String ts;

    public SlackReplyToEvent()
    {
        setType(SlackEventType.REPLY_TO);
    }

    public SlackError getError()
    {
        return error;
    }

    public long getReplyTo()
    {
        return replyTo;
    }

    public String getText()
    {
        return text;
    }

    public String getTimestamp()
    {
        return ts;
    }

    public boolean isOk()
    {
        return ok;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy