Class ExecutionStep
- java.lang.Object
-
- com.twilio.base.Resource
-
- com.twilio.rest.studio.v2.flow.execution.ExecutionStep
-
- All Implemented Interfaces:
Serializable
public class ExecutionStep extends Resource
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
static ExecutionStepFetcher
fetcher(String pathFlowSid, String pathExecutionSid, String pathSid)
static ExecutionStep
fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a ExecutionStep object using the provided ObjectMapper.static ExecutionStep
fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a ExecutionStep object using the provided ObjectMapper.String
getAccountSid()
Map<String,Object>
getContext()
ZonedDateTime
getDateCreated()
ZonedDateTime
getDateUpdated()
String
getExecutionSid()
String
getFlowSid()
Map<String,String>
getLinks()
String
getName()
String
getSid()
String
getTransitionedFrom()
String
getTransitionedTo()
URI
getUrl()
int
hashCode()
static ExecutionStepReader
reader(String pathFlowSid, String pathExecutionSid)
-
-
-
Method Detail
-
fetcher
public static ExecutionStepFetcher fetcher(String pathFlowSid, String pathExecutionSid, String pathSid)
-
reader
public static ExecutionStepReader reader(String pathFlowSid, String pathExecutionSid)
-
fromJson
public static ExecutionStep fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a ExecutionStep object using the provided ObjectMapper.- Parameters:
json
- Raw JSON StringobjectMapper
- Jackson ObjectMapper- Returns:
- ExecutionStep object represented by the provided JSON
-
fromJson
public static ExecutionStep fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a ExecutionStep object using the provided ObjectMapper.- Parameters:
json
- Raw JSON InputStreamobjectMapper
- Jackson ObjectMapper- Returns:
- ExecutionStep object represented by the provided JSON
-
getSid
public final String getSid()
-
getAccountSid
public final String getAccountSid()
-
getFlowSid
public final String getFlowSid()
-
getExecutionSid
public final String getExecutionSid()
-
getName
public final String getName()
-
getTransitionedFrom
public final String getTransitionedFrom()
-
getTransitionedTo
public final String getTransitionedTo()
-
getDateCreated
public final ZonedDateTime getDateCreated()
-
getDateUpdated
public final ZonedDateTime getDateUpdated()
-
getUrl
public final URI getUrl()
-
-