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

org.gs4tr.gcc.restclient.request.TaskRequest Maven / Gradle / Ivy

Go to download

GlobalLink Connect Cloud java is a library to connect your system to GlobalLink Connect Cloud REST API.

There is a newer version: 3.1.3
Show newest version
package org.gs4tr.gcc.restclient.request;

import com.fasterxml.jackson.annotation.JsonProperty;

public class TaskRequest extends GCRequest {

    @JsonProperty("task_id")
    private Long taskId;

    public TaskRequest(Long taskId) {
	this.taskId = taskId;
    }

    public Long getTaskId() {
	return taskId;
    }

    public void setTaskId(Long taskId) {
	this.taskId = taskId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy