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

ai.databand.schema.tasks.GetTasksReq Maven / Gradle / Ivy

There is a newer version: 1.0.26.1
Show newest version
package ai.databand.schema.tasks;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

public class GetTasksReq {

    @JsonProperty("uids")
    private List taskUids;

    public GetTasksReq(List taskUids) {
        this.taskUids = taskUids;
    }

    public List getTaskUids() {
        return taskUids;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy