com.twilio.sdk.verbs.Enqueue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio-java-sdk Show documentation
Show all versions of twilio-java-sdk Show documentation
Release Candidate for Next-Gen Twilio Java Helper Library
package com.twilio.sdk.verbs;
public class Enqueue extends Verb {
public Enqueue(final String queueName) {
super(Verb.V_ENQUEUE, queueName);
}
public void setAction(final String action) {
this.set("action", action);
}
public void setMethod(final String method) {
this.set("method", method);
}
public void setWaitUrl(final String waitUrl) {
this.set("waitUrl", waitUrl);
}
public void setWaitUrlMethod(final String waitUrlMethod) {
this.set("waitUrlMethod", waitUrlMethod);
}
}