Package com.slack.api.model.workflow
Class WorkflowStepOutput
- java.lang.Object
-
- com.slack.api.model.workflow.WorkflowStepOutput
-
public class WorkflowStepOutput extends Object
{ "name":"ticket_id", "type":"text", "label":"Ticket ID" }
https://api.slack.com/reference/workflows/workflow_step#output
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
WorkflowStepOutput.WorkflowStepOutputBuilder
-
Constructor Summary
Constructors Constructor Description WorkflowStepOutput()
WorkflowStepOutput(String name, String type, String label)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WorkflowStepOutput.WorkflowStepOutputBuilder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
String
getLabel()
Label of this input field displayed to the user.String
getName()
Developer defined name that will be used as reference during execution.String
getType()
Type of the expected input.int
hashCode()
void
setLabel(String label)
Label of this input field displayed to the user.void
setName(String name)
Developer defined name that will be used as reference during execution.void
setType(String type)
Type of the expected input.String
toString()
-
-
-
Method Detail
-
builder
public static WorkflowStepOutput.WorkflowStepOutputBuilder builder()
-
getName
public String getName()
Developer defined name that will be used as reference during execution.
-
getType
public String getType()
Type of the expected input. Can be text, channel or user.
-
getLabel
public String getLabel()
Label of this input field displayed to the user.
-
setName
public void setName(String name)
Developer defined name that will be used as reference during execution.
-
setType
public void setType(String type)
Type of the expected input. Can be text, channel or user.
-
setLabel
public void setLabel(String label)
Label of this input field displayed to the user.
-
canEqual
protected boolean canEqual(Object other)
-
-