com.twilio.sdk.verbs.Queue 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 Queue extends Verb {
public Queue(final String queueName) {
super(Verb.V_QUEUE, queueName);
}
public void setUrl(final String url) {
this.set("url", url);
}
public void setMethod(final String method) {
this.set("method", method);
}
}