Class Feedback
- java.lang.Object
-
- com.twilio.base.Resource
-
- com.twilio.rest.api.v2010.account.call.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.Issues
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)static FeedbackFetcherfetcher(String pathCallSid)static FeedbackFetcherfetcher(String pathAccountSid, String pathCallSid)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()List<Feedback.Issues>getIssues()IntegergetQualityScore()StringgetSid()inthashCode()static FeedbackUpdaterupdater(String pathCallSid)static FeedbackUpdaterupdater(String pathAccountSid, String pathCallSid)
-
-
-
Method Detail
-
fetcher
public static FeedbackFetcher fetcher(String pathCallSid)
-
fetcher
public static FeedbackFetcher fetcher(String pathAccountSid, String pathCallSid)
-
updater
public static FeedbackUpdater updater(String pathCallSid)
-
updater
public static FeedbackUpdater updater(String pathAccountSid, String pathCallSid)
-
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()
-
getDateCreated
public final ZonedDateTime getDateCreated()
-
getDateUpdated
public final ZonedDateTime getDateUpdated()
-
getIssues
public final List<Feedback.Issues> getIssues()
-
getQualityScore
public final Integer getQualityScore()
-
getSid
public final String getSid()
-
-