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 booleanequals(Object o)static ExecutionStepFetcherfetcher(String pathFlowSid, String pathExecutionSid, String pathSid)static ExecutionStepfromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)Converts a JSON InputStream into a ExecutionStep object using the provided ObjectMapper.static ExecutionStepfromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)Converts a JSON String into a ExecutionStep object using the provided ObjectMapper.StringgetAccountSid()Map<String,Object>getContext()ZonedDateTimegetDateCreated()ZonedDateTimegetDateUpdated()StringgetExecutionSid()StringgetFlowSid()Map<String,String>getLinks()StringgetName()StringgetSid()StringgetTransitionedFrom()StringgetTransitionedTo()URIgetUrl()inthashCode()static ExecutionStepReaderreader(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()
-
-