Class KnowledgeStatus
- java.lang.Object
-
- com.twilio.base.Resource
-
- com.twilio.rest.assistants.v1.knowledge.KnowledgeStatus
-
- All Implemented Interfaces:
Serializable
public class KnowledgeStatus 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 KnowledgeStatusFetcher
fetcher(String pathId)
static KnowledgeStatus
fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a KnowledgeStatus object using the provided ObjectMapper.static KnowledgeStatus
fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a KnowledgeStatus object using the provided ObjectMapper.String
getAccountSid()
ZonedDateTime
getDateUpdated()
String
getLastStatus()
String
getStatus()
int
hashCode()
-
-
-
Method Detail
-
fetcher
public static KnowledgeStatusFetcher fetcher(String pathId)
-
fromJson
public static KnowledgeStatus fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a KnowledgeStatus object using the provided ObjectMapper.- Parameters:
json
- Raw JSON StringobjectMapper
- Jackson ObjectMapper- Returns:
- KnowledgeStatus object represented by the provided JSON
-
fromJson
public static KnowledgeStatus fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a KnowledgeStatus object using the provided ObjectMapper.- Parameters:
json
- Raw JSON InputStreamobjectMapper
- Jackson ObjectMapper- Returns:
- KnowledgeStatus object represented by the provided JSON
-
getAccountSid
public final String getAccountSid()
-
getStatus
public final String getStatus()
-
getLastStatus
public final String getLastStatus()
-
getDateUpdated
public final ZonedDateTime getDateUpdated()
-
-