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

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

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