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

com.slack.api.methods.request.workflows.WorkflowsStepCompletedRequest 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.stepCompleted
 */
@Data
@Builder
public class WorkflowsStepCompletedRequest implements SlackApiRequest {

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

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

    /**
     * Key-value object of outputs from your step.
     * Keys of this object reflect the configured key properties of
     * your outputs array from your workflow_step object.
     */
    private Map outputs;
    private String outputsAsString;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy