.. java:import:: com.fasterxml.jackson.annotation JsonIgnoreProperties .. java:import:: com.fasterxml.jackson.annotation JsonProperty TaskImportResponse ================== .. java:package:: io.taskmonk.entities :noindex: .. java:type:: @JsonIgnoreProperties public class TaskImportResponse The response object on importing tasks to a batch. Contains the job_id which should be used in a consequent \ :java:ref:`io.taskmonk.client.TaskMonkClient.getJobProgress(String)`\ to monitor status of the upload Fields ------ batchId ^^^^^^^ .. java:field:: public String batchId :outertype: TaskImportResponse batch_id ^^^^^^^^ .. java:field:: public String batch_id :outertype: TaskImportResponse job_id ^^^^^^ .. java:field:: public String job_id :outertype: TaskImportResponse Constructors ------------ TaskImportResponse ^^^^^^^^^^^^^^^^^^ .. java:constructor:: public TaskImportResponse() :outertype: TaskImportResponse TaskImportResponse ^^^^^^^^^^^^^^^^^^ .. java:constructor:: public TaskImportResponse(String job_id) :outertype: TaskImportResponse TaskImportResponse ^^^^^^^^^^^^^^^^^^ .. java:constructor:: public TaskImportResponse(String job_id, String batch_id) :outertype: TaskImportResponse Methods ------- getBatchId ^^^^^^^^^^ .. java:method:: @JsonProperty public String getBatchId() :outertype: TaskImportResponse getJobId ^^^^^^^^ .. java:method:: @JsonProperty public String getJobId() :outertype: TaskImportResponse setBatchId ^^^^^^^^^^ .. java:method:: @JsonProperty public void setBatchId(String batch_id) :outertype: TaskImportResponse setJobId ^^^^^^^^ .. java:method:: @JsonProperty public void setJobId(String job_id) :outertype: TaskImportResponse toString ^^^^^^^^ .. java:method:: @Override public String toString() :outertype: TaskImportResponse