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

com.slack.api.model.event.WorkflowStepExecuteEvent Maven / Gradle / Ivy

package com.slack.api.model.event;

import com.slack.api.model.workflow.WorkflowStepExecution;
import lombok.Data;

/**
 * A workflow step supported by your app should execute
 * 

* https://api.slack.com/events/workflow_step_execute * @deprecated Use new custom steps: https://api.slack.com/automation/functions/custom-bolt */ @Data @Deprecated public class WorkflowStepExecuteEvent implements Event { public static final String TYPE_NAME = "workflow_step_execute"; private final String type = TYPE_NAME; private String callbackId; private WorkflowStepExecution workflowStep; private String eventTs; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy