.. java:import:: com.fasterxml.jackson.annotation JsonIgnoreProperties .. java:import:: com.fasterxml.jackson.annotation JsonProperty .. java:import:: java.util ArrayList .. java:import:: java.util Date .. java:import:: java.util List NewBatchData ============ .. java:package:: io.taskmonk.entities :noindex: .. java:type:: @JsonIgnoreProperties public class NewBatchData Class used for creating and editing batch properties Fields ------ batch_name ^^^^^^^^^^ .. java:field:: String batch_name :outertype: NewBatchData The name of the batch. Mandatory when creating a new batch. comments ^^^^^^^^ .. java:field:: String comments :outertype: NewBatchData Any instruction that is displayed to the analysts as they are working on tasks in the batch notifications ^^^^^^^^^^^^^ .. java:field:: public List notifications :outertype: NewBatchData A set of notifications for milestones on the batch priority ^^^^^^^^ .. java:field:: Short priority :outertype: NewBatchData Optional priority for the batch. Higher priority batches are executed first. startTime ^^^^^^^^^ .. java:field:: Date startTime :outertype: NewBatchData A start time in the future for when work should start on the batch Constructors ------------ NewBatchData ^^^^^^^^^^^^ .. java:constructor:: public NewBatchData(String batch_name) :outertype: NewBatchData NewBatchData ^^^^^^^^^^^^ .. java:constructor:: public NewBatchData() :outertype: NewBatchData Methods ------- getBatchName ^^^^^^^^^^^^ .. java:method:: @JsonProperty public String getBatchName() :outertype: NewBatchData getComments ^^^^^^^^^^^ .. java:method:: public String getComments() :outertype: NewBatchData getNotifications ^^^^^^^^^^^^^^^^ .. java:method:: public List getNotifications() :outertype: NewBatchData getPriority ^^^^^^^^^^^ .. java:method:: public Short getPriority() :outertype: NewBatchData getStartTime ^^^^^^^^^^^^ .. java:method:: @JsonProperty public Date getStartTime() :outertype: NewBatchData setBatchName ^^^^^^^^^^^^ .. java:method:: @JsonProperty public NewBatchData setBatchName(String batch_name) :outertype: NewBatchData setComments ^^^^^^^^^^^ .. java:method:: public NewBatchData setComments(String comments) :outertype: NewBatchData setNotifications ^^^^^^^^^^^^^^^^ .. java:method:: public NewBatchData setNotifications(List notifications) :outertype: NewBatchData setPriority ^^^^^^^^^^^ .. java:method:: public NewBatchData setPriority(Integer priority) :outertype: NewBatchData setStartTime ^^^^^^^^^^^^ .. java:method:: @JsonProperty public NewBatchData setStartTime(Date startTime) :outertype: NewBatchData