Class FeedbackCreator
- java.lang.Object
-
- com.twilio.base.Creator<Feedback>
-
- com.twilio.rest.api.v2010.account.call.FeedbackCreator
-
-
Constructor Summary
Constructors Constructor Description FeedbackCreator(String pathCallSid, Integer qualityScore)
Construct a new FeedbackCreator.FeedbackCreator(String pathAccountSid, String pathCallSid, Integer qualityScore)
Construct a new FeedbackCreator.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Feedback
create(TwilioRestClient client)
Make the request to the Twilio API to perform the create.FeedbackCreator
setIssue(Feedback.Issues issue)
A list of one or more issues experienced during the call.FeedbackCreator
setIssue(List<Feedback.Issues> issue)
A list of one or more issues experienced during the call.-
Methods inherited from class com.twilio.base.Creator
create, createAsync, createAsync
-
-
-
-
Constructor Detail
-
FeedbackCreator
public FeedbackCreator(String pathCallSid, Integer qualityScore)
Construct a new FeedbackCreator.- Parameters:
pathCallSid
- The call sid that uniquely identifies the callqualityScore
- The call quality expressed as an integer from 1 to 5
-
FeedbackCreator
public FeedbackCreator(String pathAccountSid, String pathCallSid, Integer qualityScore)
Construct a new FeedbackCreator.- Parameters:
pathAccountSid
- The unique sid that identifies this accountpathCallSid
- The call sid that uniquely identifies the callqualityScore
- The call quality expressed as an integer from 1 to 5
-
-
Method Detail
-
setIssue
public FeedbackCreator setIssue(List<Feedback.Issues> issue)
A list of one or more issues experienced during the call. Issues can be: `imperfect-audio`, `dropped-call`, `incorrect-caller-id`, `post-dial-delay`, `digits-not-captured`, `audio-latency`, `unsolicited-call`, or `one-way-audio`..- Parameters:
issue
- Issues experienced during the call- Returns:
- this
-
setIssue
public FeedbackCreator setIssue(Feedback.Issues issue)
A list of one or more issues experienced during the call. Issues can be: `imperfect-audio`, `dropped-call`, `incorrect-caller-id`, `post-dial-delay`, `digits-not-captured`, `audio-latency`, `unsolicited-call`, or `one-way-audio`..- Parameters:
issue
- Issues experienced during the call- Returns:
- this
-
create
public Feedback create(TwilioRestClient client)
Make the request to the Twilio API to perform the create.
-
-