![JAR search and dependency download from the Maven repository](/logo.png)
com.twilio.sdk.verbs.Task 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
Java helper library for Twilio services
package com.twilio.sdk.verbs;
import java.util.Map;
import org.json.simple.JSONObject;
public class Task extends Verb {
public Task(String attributes) {
super(V_TASK, attributes);
}
public Task(Map attributes) {
super(V_TASK, JSONObject.toJSONString(attributes));
}
public void setPriority(final int priority) {
this.set("priority", String.valueOf(priority));
}
public void setTimeout(final int timeout) {
this.set("timeout", String.valueOf(timeout));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy