Class Feedback
- java.lang.Object
-
- com.twilio.base.Resource
-
- com.twilio.rest.api.v2010.account.message.Feedback
-
- All Implemented Interfaces:
Serializable
public class Feedback extends Resource
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Feedback.Outcome
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FeedbackCreator
creator(String pathMessageSid)
static FeedbackCreator
creator(String pathAccountSid, String pathMessageSid)
boolean
equals(Object o)
static Feedback
fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a Feedback object using the provided ObjectMapper.static Feedback
fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a Feedback object using the provided ObjectMapper.String
getAccountSid()
ZonedDateTime
getDateCreated()
ZonedDateTime
getDateUpdated()
String
getMessageSid()
Feedback.Outcome
getOutcome()
String
getUri()
int
hashCode()
-
-
-
Method Detail
-
creator
public static FeedbackCreator creator(String pathMessageSid)
-
creator
public static FeedbackCreator creator(String pathAccountSid, String pathMessageSid)
-
fromJson
public static Feedback fromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON String into a Feedback object using the provided ObjectMapper.- Parameters:
json
- Raw JSON StringobjectMapper
- Jackson ObjectMapper- Returns:
- Feedback object represented by the provided JSON
-
fromJson
public static Feedback fromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Converts a JSON InputStream into a Feedback object using the provided ObjectMapper.- Parameters:
json
- Raw JSON InputStreamobjectMapper
- Jackson ObjectMapper- Returns:
- Feedback object represented by the provided JSON
-
getAccountSid
public final String getAccountSid()
-
getMessageSid
public final String getMessageSid()
-
getOutcome
public final Feedback.Outcome getOutcome()
-
getDateCreated
public final ZonedDateTime getDateCreated()
-
getDateUpdated
public final ZonedDateTime getDateUpdated()
-
getUri
public final String getUri()
-
-