Class WorkflowsUpdateStepRequest
- java.lang.Object
-
- com.slack.api.methods.request.workflows.WorkflowsUpdateStepRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class WorkflowsUpdateStepRequest extends Object implements SlackApiRequest
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classWorkflowsUpdateStepRequest.WorkflowsUpdateStepRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WorkflowsUpdateStepRequest.WorkflowsUpdateStepRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)Map<String,WorkflowStepInput>getInputs()A JSON key-value map of inputs required from a user during configuration.StringgetInputsAsString()List<WorkflowStepOutput>getOutputs()A JSON array of output objects used during step execution.StringgetOutputsAsString()StringgetStepImageUrl()An optional field that can be used to override app image that is shown in the Workflow Builder.StringgetStepName()An optional field that can be used to override the step name that is shown in the Workflow Builder.StringgetToken()Authentication token bearing required scopes.StringgetWorkflowStepEditId()A context identifier provided with view_submission payloads used to call back to workflows.updateStep.inthashCode()voidsetInputs(Map<String,WorkflowStepInput> inputs)A JSON key-value map of inputs required from a user during configuration.voidsetInputsAsString(String inputsAsString)voidsetOutputs(List<WorkflowStepOutput> outputs)A JSON array of output objects used during step execution.voidsetOutputsAsString(String outputsAsString)voidsetStepImageUrl(String stepImageUrl)An optional field that can be used to override app image that is shown in the Workflow Builder.voidsetStepName(String stepName)An optional field that can be used to override the step name that is shown in the Workflow Builder.voidsetToken(String token)Authentication token bearing required scopes.voidsetWorkflowStepEditId(String workflowStepEditId)A context identifier provided with view_submission payloads used to call back to workflows.updateStep.StringtoString()
-
-
-
Method Detail
-
builder
public static WorkflowsUpdateStepRequest.WorkflowsUpdateStepRequestBuilder builder()
-
getToken
public String getToken()
Authentication token bearing required scopes.- Specified by:
getTokenin interfaceSlackApiRequest
-
getWorkflowStepEditId
public String getWorkflowStepEditId()
A context identifier provided with view_submission payloads used to call back to workflows.updateStep.
-
getInputs
public Map<String,WorkflowStepInput> getInputs()
A JSON key-value map of inputs required from a user during configuration. This is the data your app expects to receive when the workflow step starts. Please note: the embedded variable format is set and replaced by the workflow system. You cannot create custom variables that will be replaced at runtime.
-
getInputsAsString
public String getInputsAsString()
-
getOutputs
public List<WorkflowStepOutput> getOutputs()
A JSON array of output objects used during step execution. This is the data your app agrees to provide when your workflow step was executed.
-
getOutputsAsString
public String getOutputsAsString()
-
getStepImageUrl
public String getStepImageUrl()
An optional field that can be used to override app image that is shown in the Workflow Builder.
-
getStepName
public String getStepName()
An optional field that can be used to override the step name that is shown in the Workflow Builder.
-
setToken
public void setToken(String token)
Authentication token bearing required scopes.
-
setWorkflowStepEditId
public void setWorkflowStepEditId(String workflowStepEditId)
A context identifier provided with view_submission payloads used to call back to workflows.updateStep.
-
setInputs
public void setInputs(Map<String,WorkflowStepInput> inputs)
A JSON key-value map of inputs required from a user during configuration. This is the data your app expects to receive when the workflow step starts. Please note: the embedded variable format is set and replaced by the workflow system. You cannot create custom variables that will be replaced at runtime.
-
setInputsAsString
public void setInputsAsString(String inputsAsString)
-
setOutputs
public void setOutputs(List<WorkflowStepOutput> outputs)
A JSON array of output objects used during step execution. This is the data your app agrees to provide when your workflow step was executed.
-
setOutputsAsString
public void setOutputsAsString(String outputsAsString)
-
setStepImageUrl
public void setStepImageUrl(String stepImageUrl)
An optional field that can be used to override app image that is shown in the Workflow Builder.
-
setStepName
public void setStepName(String stepName)
An optional field that can be used to override the step name that is shown in the Workflow Builder.
-
canEqual
protected boolean canEqual(Object other)
-
-