com.docusign.esign.model.BillingInvoicesResponse 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;
/** Defines a billing invoice response object.. */
@Schema(description = "Defines a billing invoice response object.")
public class BillingInvoicesResponse {
@JsonProperty("billingInvoices")
private java.util.List billingInvoices = null;
@JsonProperty("nextUri")
private String nextUri = null;
@JsonProperty("previousUri")
private String previousUri = null;
/**
* billingInvoices.
*
* @return BillingInvoicesResponse
*/
public BillingInvoicesResponse billingInvoices(java.util.List billingInvoices) {
this.billingInvoices = billingInvoices;
return this;
}
/**
* addBillingInvoicesItem.
*
* @return BillingInvoicesResponse
*/
public BillingInvoicesResponse addBillingInvoicesItem(BillingInvoice billingInvoicesItem) {
if (this.billingInvoices == null) {
this.billingInvoices = new java.util.ArrayList<>();
}
this.billingInvoices.add(billingInvoicesItem);
return this;
}
/**
* Reserved: TBD.
*
* @return billingInvoices
*/
@Schema(description = "Reserved: TBD")
public java.util.List getBillingInvoices() {
return billingInvoices;
}
/** setBillingInvoices. */
public void setBillingInvoices(java.util.List billingInvoices) {
this.billingInvoices = billingInvoices;
}
/**
* nextUri.
*
* @return BillingInvoicesResponse
*/
public BillingInvoicesResponse 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(
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;
}
/** setNextUri. */
public void setNextUri(String nextUri) {
this.nextUri = nextUri;
}
/**
* previousUri.
*
* @return BillingInvoicesResponse
*/
public BillingInvoicesResponse previousUri(String previousUri) {
this.previousUri = previousUri;
return this;
}
/**
* The postal code for the billing address..
*
* @return previousUri
*/
@Schema(description = "The postal code for the billing address.")
public String getPreviousUri() {
return previousUri;
}
/** setPreviousUri. */
public void setPreviousUri(String previousUri) {
this.previousUri = previousUri;
}
/**
* 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;
}
BillingInvoicesResponse billingInvoicesResponse = (BillingInvoicesResponse) o;
return Objects.equals(this.billingInvoices, billingInvoicesResponse.billingInvoices)
&& Objects.equals(this.nextUri, billingInvoicesResponse.nextUri)
&& Objects.equals(this.previousUri, billingInvoicesResponse.previousUri);
}
/** Returns the HashCode. */
@Override
public int hashCode() {
return Objects.hash(billingInvoices, nextUri, previousUri);
}
/** Converts the given object to string. */
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BillingInvoicesResponse {\n");
sb.append(" billingInvoices: ").append(toIndentedString(billingInvoices)).append("\n");
sb.append(" nextUri: ").append(toIndentedString(nextUri)).append("\n");
sb.append(" previousUri: ").append(toIndentedString(previousUri)).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 ");
}
}