All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.twilio.sdk.verbs.Enqueue Maven / Gradle / Ivy

There is a newer version: 7.0.0-rc-10
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy