com.docusign.esign.model.EnvelopePublishTransactionList 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;
/** EnvelopePublishTransactionList */
public class EnvelopePublishTransactionList {
@JsonProperty("endPosition")
private String endPosition = null;
@JsonProperty("envelopePublishTransactions")
private java.util.List envelopePublishTransactions =
new java.util.ArrayList();
@JsonProperty("nextUri")
private String nextUri = null;
@JsonProperty("previousUri")
private String previousUri = null;
@JsonProperty("resultSetSize")
private String resultSetSize = null;
@JsonProperty("startPosition")
private String startPosition = null;
@JsonProperty("totalSetSize")
private String totalSetSize = null;
public EnvelopePublishTransactionList endPosition(String endPosition) {
this.endPosition = endPosition;
return this;
}
/**
* The last position in the result set.
*
* @return endPosition
*/
@Schema(example = "null", description = "The last position in the result set. ")
public String getEndPosition() {
return endPosition;
}
public void setEndPosition(String endPosition) {
this.endPosition = endPosition;
}
public EnvelopePublishTransactionList envelopePublishTransactions(
java.util.List envelopePublishTransactions) {
this.envelopePublishTransactions = envelopePublishTransactions;
return this;
}
public EnvelopePublishTransactionList addEnvelopePublishTransactionsItem(
EnvelopePublishTransaction envelopePublishTransactionsItem) {
this.envelopePublishTransactions.add(envelopePublishTransactionsItem);
return this;
}
/** @return envelopePublishTransactions */
@Schema(example = "null", description = "")
public java.util.List getEnvelopePublishTransactions() {
return envelopePublishTransactions;
}
public void setEnvelopePublishTransactions(
java.util.List envelopePublishTransactions) {
this.envelopePublishTransactions = envelopePublishTransactions;
}
public EnvelopePublishTransactionList nextUri(String nextUri) {
this.nextUri = nextUri;
return this;
}
/**
* The URI to the next chunk of records based on the search request. If the endPosition is the
* entire results of the search, this is null.
*
* @return nextUri
*/
@Schema(
example = "null",
description =
"The URI to the next chunk of records based on the search request. If the endPosition is the entire results of the search, this is null. ")
public String getNextUri() {
return nextUri;
}
public void setNextUri(String nextUri) {
this.nextUri = nextUri;
}
public EnvelopePublishTransactionList previousUri(String previousUri) {
this.previousUri = previousUri;
return this;
}
/**
* The postal code for the billing address.
*
* @return previousUri
*/
@Schema(example = "null", description = "The postal code for the billing address.")
public String getPreviousUri() {
return previousUri;
}
public void setPreviousUri(String previousUri) {
this.previousUri = previousUri;
}
public EnvelopePublishTransactionList resultSetSize(String resultSetSize) {
this.resultSetSize = resultSetSize;
return this;
}
/**
* The number of results returned in this response.
*
* @return resultSetSize
*/
@Schema(example = "null", description = "The number of results returned in this response. ")
public String getResultSetSize() {
return resultSetSize;
}
public void setResultSetSize(String resultSetSize) {
this.resultSetSize = resultSetSize;
}
public EnvelopePublishTransactionList startPosition(String startPosition) {
this.startPosition = startPosition;
return this;
}
/**
* Starting position of the current result set.
*
* @return startPosition
*/
@Schema(example = "null", description = "Starting position of the current result set.")
public String getStartPosition() {
return startPosition;
}
public void setStartPosition(String startPosition) {
this.startPosition = startPosition;
}
public EnvelopePublishTransactionList totalSetSize(String totalSetSize) {
this.totalSetSize = totalSetSize;
return this;
}
/**
* The total number of items available in the result set. This will always be greater than or
* equal to the value of the property returning the results in the in the response.
*
* @return totalSetSize
*/
@Schema(
example = "null",
description =
"The total number of items available in the result set. This will always be greater than or equal to the value of the property returning the results in the in the response.")
public String getTotalSetSize() {
return totalSetSize;
}
public void setTotalSetSize(String totalSetSize) {
this.totalSetSize = totalSetSize;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
EnvelopePublishTransactionList envelopePublishTransactionList =
(EnvelopePublishTransactionList) o;
return Objects.equals(this.endPosition, envelopePublishTransactionList.endPosition)
&& Objects.equals(
this.envelopePublishTransactions,
envelopePublishTransactionList.envelopePublishTransactions)
&& Objects.equals(this.nextUri, envelopePublishTransactionList.nextUri)
&& Objects.equals(this.previousUri, envelopePublishTransactionList.previousUri)
&& Objects.equals(this.resultSetSize, envelopePublishTransactionList.resultSetSize)
&& Objects.equals(this.startPosition, envelopePublishTransactionList.startPosition)
&& Objects.equals(this.totalSetSize, envelopePublishTransactionList.totalSetSize);
}
@Override
public int hashCode() {
return Objects.hash(
endPosition,
envelopePublishTransactions,
nextUri,
previousUri,
resultSetSize,
startPosition,
totalSetSize);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class EnvelopePublishTransactionList {\n");
sb.append(" endPosition: ").append(toIndentedString(endPosition)).append("\n");
sb.append(" envelopePublishTransactions: ")
.append(toIndentedString(envelopePublishTransactions))
.append("\n");
sb.append(" nextUri: ").append(toIndentedString(nextUri)).append("\n");
sb.append(" previousUri: ").append(toIndentedString(previousUri)).append("\n");
sb.append(" resultSetSize: ").append(toIndentedString(resultSetSize)).append("\n");
sb.append(" startPosition: ").append(toIndentedString(startPosition)).append("\n");
sb.append(" totalSetSize: ").append(toIndentedString(totalSetSize)).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 ");
}
}