Package com.slack.api.model.workflow
Class WorkflowStepOutput
java.lang.Object
com.slack.api.model.workflow.WorkflowStepOutput
public class WorkflowStepOutput
extends java.lang.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 classWorkflowStepOutput.WorkflowStepOutputBuilder -
Constructor Summary
Constructors Constructor Description WorkflowStepOutput()WorkflowStepOutput(java.lang.String name, java.lang.String type, java.lang.String label) -
Method Summary
Modifier and Type Method Description static WorkflowStepOutput.WorkflowStepOutputBuilderbuilder()protected booleancanEqual(java.lang.Object other)booleanequals(java.lang.Object o)java.lang.StringgetLabel()Label of this input field displayed to the user.java.lang.StringgetName()Developer defined name that will be used as reference during execution.java.lang.StringgetType()Type of the expected input.inthashCode()voidsetLabel(java.lang.String label)Label of this input field displayed to the user.voidsetName(java.lang.String name)Developer defined name that will be used as reference during execution.voidsetType(java.lang.String type)Type of the expected input.java.lang.StringtoString()
-
Constructor Details
-
WorkflowStepOutput
public WorkflowStepOutput(java.lang.String name, java.lang.String type, java.lang.String label) -
WorkflowStepOutput
public WorkflowStepOutput()
-
-
Method Details
-
builder
-
getName
public java.lang.String getName()Developer defined name that will be used as reference during execution. -
getType
public java.lang.String getType()Type of the expected input. Can be text, channel or user. -
getLabel
public java.lang.String getLabel()Label of this input field displayed to the user. -
setName
public void setName(java.lang.String name)Developer defined name that will be used as reference during execution. -
setType
public void setType(java.lang.String type)Type of the expected input. Can be text, channel or user. -
setLabel
public void setLabel(java.lang.String label)Label of this input field displayed to the user. -
equals
public boolean equals(java.lang.Object o)- Overrides:
equalsin classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other) -
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-