com.docusign.esign.model.BulkProcessResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docusign-esign-java Show documentation
Show all versions of docusign-esign-java Show documentation
The official Docusign eSignature JAVA client is based on version 2.1 of the Docusign REST API and provides libraries for JAVA application integration. It is recommended that you use this version of the library for new development.
package com.docusign.esign.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.Objects;
/** BulkProcessResponse. */
public class BulkProcessResponse {
@JsonProperty("batchId")
private String batchId = null;
@JsonProperty("batchName")
private String batchName = null;
@JsonProperty("batchSize")
private String batchSize = null;
@JsonProperty("errorDetails")
private java.util.List errorDetails = null;
@JsonProperty("errors")
private java.util.List errors = null;
@JsonProperty("queueLimit")
private String queueLimit = null;
@JsonProperty("totalQueued")
private String totalQueued = null;
/**
* batchId.
*
* @return BulkProcessResponse
*/
public BulkProcessResponse batchId(String batchId) {
this.batchId = batchId;
return this;
}
/**
* .
*
* @return batchId
*/
@Schema(description = "")
public String getBatchId() {
return batchId;
}
/** setBatchId. */
public void setBatchId(String batchId) {
this.batchId = batchId;
}
/**
* batchName.
*
* @return BulkProcessResponse
*/
public BulkProcessResponse batchName(String batchName) {
this.batchName = batchName;
return this;
}
/**
* .
*
* @return batchName
*/
@Schema(description = "")
public String getBatchName() {
return batchName;
}
/** setBatchName. */
public void setBatchName(String batchName) {
this.batchName = batchName;
}
/**
* batchSize.
*
* @return BulkProcessResponse
*/
public BulkProcessResponse batchSize(String batchSize) {
this.batchSize = batchSize;
return this;
}
/**
* .
*
* @return batchSize
*/
@Schema(description = "")
public String getBatchSize() {
return batchSize;
}
/** setBatchSize. */
public void setBatchSize(String batchSize) {
this.batchSize = batchSize;
}
/**
* errorDetails.
*
* @return BulkProcessResponse
*/
public BulkProcessResponse errorDetails(java.util.List errorDetails) {
this.errorDetails = errorDetails;
return this;
}
/**
* addErrorDetailsItem.
*
* @return BulkProcessResponse
*/
public BulkProcessResponse addErrorDetailsItem(String errorDetailsItem) {
if (this.errorDetails == null) {
this.errorDetails = new java.util.ArrayList<>();
}
this.errorDetails.add(errorDetailsItem);
return this;
}
/**
* Array or errors..
*
* @return errorDetails
*/
@Schema(description = "Array or errors.")
public java.util.List getErrorDetails() {
return errorDetails;
}
/** setErrorDetails. */
public void setErrorDetails(java.util.List errorDetails) {
this.errorDetails = errorDetails;
}
/**
* errors.
*
* @return BulkProcessResponse
*/
public BulkProcessResponse errors(java.util.List errors) {
this.errors = errors;
return this;
}
/**
* addErrorsItem.
*
* @return BulkProcessResponse
*/
public BulkProcessResponse addErrorsItem(String errorsItem) {
if (this.errors == null) {
this.errors = new java.util.ArrayList<>();
}
this.errors.add(errorsItem);
return this;
}
/**
* .
*
* @return errors
*/
@Schema(description = "")
public java.util.List getErrors() {
return errors;
}
/** setErrors. */
public void setErrors(java.util.List errors) {
this.errors = errors;
}
/**
* queueLimit.
*
* @return BulkProcessResponse
*/
public BulkProcessResponse queueLimit(String queueLimit) {
this.queueLimit = queueLimit;
return this;
}
/**
* .
*
* @return queueLimit
*/
@Schema(description = "")
public String getQueueLimit() {
return queueLimit;
}
/** setQueueLimit. */
public void setQueueLimit(String queueLimit) {
this.queueLimit = queueLimit;
}
/**
* totalQueued.
*
* @return BulkProcessResponse
*/
public BulkProcessResponse totalQueued(String totalQueued) {
this.totalQueued = totalQueued;
return this;
}
/**
* .
*
* @return totalQueued
*/
@Schema(description = "")
public String getTotalQueued() {
return totalQueued;
}
/** setTotalQueued. */
public void setTotalQueued(String totalQueued) {
this.totalQueued = totalQueued;
}
/**
* Compares objects.
*
* @return true or false depending on comparison result.
*/
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BulkProcessResponse bulkProcessResponse = (BulkProcessResponse) o;
return Objects.equals(this.batchId, bulkProcessResponse.batchId)
&& Objects.equals(this.batchName, bulkProcessResponse.batchName)
&& Objects.equals(this.batchSize, bulkProcessResponse.batchSize)
&& Objects.equals(this.errorDetails, bulkProcessResponse.errorDetails)
&& Objects.equals(this.errors, bulkProcessResponse.errors)
&& Objects.equals(this.queueLimit, bulkProcessResponse.queueLimit)
&& Objects.equals(this.totalQueued, bulkProcessResponse.totalQueued);
}
/** Returns the HashCode. */
@Override
public int hashCode() {
return Objects.hash(
batchId, batchName, batchSize, errorDetails, errors, queueLimit, totalQueued);
}
/** Converts the given object to string. */
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BulkProcessResponse {\n");
sb.append(" batchId: ").append(toIndentedString(batchId)).append("\n");
sb.append(" batchName: ").append(toIndentedString(batchName)).append("\n");
sb.append(" batchSize: ").append(toIndentedString(batchSize)).append("\n");
sb.append(" errorDetails: ").append(toIndentedString(errorDetails)).append("\n");
sb.append(" errors: ").append(toIndentedString(errors)).append("\n");
sb.append(" queueLimit: ").append(toIndentedString(queueLimit)).append("\n");
sb.append(" totalQueued: ").append(toIndentedString(totalQueued)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}