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

com.slack.api.bolt.context.builtin.ActionContext Maven / Gradle / Ivy

There is a newer version: 1.44.2
Show newest version
package com.slack.api.bolt.context.builtin;

import com.slack.api.bolt.context.ActionRespondUtility;
import com.slack.api.bolt.context.Context;
import com.slack.api.bolt.context.FunctionUtility;
import com.slack.api.bolt.util.Responder;
import lombok.*;

/**
 * Action type request's context.
 */
@Getter
@Setter
@Builder
@NoArgsConstructor
@AllArgsConstructor
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = false)
public class ActionContext extends Context implements ActionRespondUtility, FunctionUtility {

    private String triggerId;
    private String responseUrl;
    private Responder responder;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy