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

com.slack.api.methods.request.workflows.WorkflowsStepFailedRequest Maven / Gradle / Ivy

There is a newer version: 1.39.0
Show newest version
package com.slack.api.methods.request.workflows;

import com.slack.api.methods.SlackApiRequest;
import lombok.Builder;
import lombok.Data;

import java.util.Map;

/**
 * https://api.slack.com/methods/workflows.stepFailed
 */
@Data
@Builder
public class WorkflowsStepFailedRequest implements SlackApiRequest {

    /**
     * Authentication token bearing required scopes.
     */
    private String token;

    /**
     * A JSON-based object with a message property that should contain a human-readable error message.
     */
    private Map error;

    /**
     * Context identifier that maps to the correct workflow step execution.
     */
    private String workflowStepExecuteId;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy