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 classFeedback.Outcome
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FeedbackCreatorcreator(String pathMessageSid)static FeedbackCreatorcreator(String pathAccountSid, String pathMessageSid)booleanequals(Object o)static FeedbackfromJson(InputStream json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)Converts a JSON InputStream into a Feedback object using the provided ObjectMapper.static FeedbackfromJson(String json, com.fasterxml.jackson.databind.ObjectMapper objectMapper)Converts a JSON String into a Feedback object using the provided ObjectMapper.StringgetAccountSid()ZonedDateTimegetDateCreated()ZonedDateTimegetDateUpdated()StringgetMessageSid()Feedback.OutcomegetOutcome()StringgetUri()inthashCode()
-
-
-
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()
-
-