Package com.twilio.rest.autopilot.v1
Class RestoreAssistant
- java.lang.Object
-
- com.twilio.base.Resource
-
- com.twilio.rest.autopilot.v1.RestoreAssistant
-
- All Implemented Interfaces:
Serializable
public class RestoreAssistant 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 RestoreAssistant
fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a RestoreAssistant object using the provided ObjectMapper.static RestoreAssistant
fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a RestoreAssistant object using the provided ObjectMapper.String
getAccountSid()
String
getCallbackEvents()
URI
getCallbackUrl()
ZonedDateTime
getDateCreated()
ZonedDateTime
getDateUpdated()
String
getDevelopmentStage()
String
getFriendlyName()
String
getLatestModelBuildSid()
Boolean
getLogQueries()
Boolean
getNeedsModelBuild()
String
getSid()
String
getUniqueName()
int
hashCode()
static RestoreAssistantUpdater
updater(String assistant)
-
-
-
Method Detail
-
updater
public static RestoreAssistantUpdater updater(String assistant)
-
fromJson
public static RestoreAssistant fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a RestoreAssistant object using the provided ObjectMapper.- Parameters:
json
- Raw JSON StringobjectMapper
- Jackson ObjectMapper- Returns:
- RestoreAssistant object represented by the provided JSON
-
fromJson
public static RestoreAssistant fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a RestoreAssistant object using the provided ObjectMapper.- Parameters:
json
- Raw JSON InputStreamobjectMapper
- Jackson ObjectMapper- Returns:
- RestoreAssistant object represented by the provided JSON
-
getAccountSid
public final String getAccountSid()
-
getSid
public final String getSid()
-
getDateCreated
public final ZonedDateTime getDateCreated()
-
getDateUpdated
public final ZonedDateTime getDateUpdated()
-
getUniqueName
public final String getUniqueName()
-
getFriendlyName
public final String getFriendlyName()
-
getNeedsModelBuild
public final Boolean getNeedsModelBuild()
-
getLatestModelBuildSid
public final String getLatestModelBuildSid()
-
getLogQueries
public final Boolean getLogQueries()
-
getDevelopmentStage
public final String getDevelopmentStage()
-
getCallbackUrl
public final URI getCallbackUrl()
-
getCallbackEvents
public final String getCallbackEvents()
-
-