com.docusign.esign.model.BillingPlanResponse 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 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 plan response object.. */
@Schema(description = "Defines a billing plan response object.")
public class BillingPlanResponse {
@JsonProperty("billingPlan")
private BillingPlan billingPlan = null;
@JsonProperty("successorPlans")
private java.util.List successorPlans = null;
/**
* billingPlan.
*
* @return BillingPlanResponse
*/
public BillingPlanResponse billingPlan(BillingPlan billingPlan) {
this.billingPlan = billingPlan;
return this;
}
/**
* An object that contains details about the billing plan..
*
* @return billingPlan
*/
@Schema(description = "An object that contains details about the billing plan.")
public BillingPlan getBillingPlan() {
return billingPlan;
}
/** setBillingPlan. */
public void setBillingPlan(BillingPlan billingPlan) {
this.billingPlan = billingPlan;
}
/**
* successorPlans.
*
* @return BillingPlanResponse
*/
public BillingPlanResponse successorPlans(java.util.List successorPlans) {
this.successorPlans = successorPlans;
return this;
}
/**
* addSuccessorPlansItem.
*
* @return BillingPlanResponse
*/
public BillingPlanResponse addSuccessorPlansItem(BillingPlan successorPlansItem) {
if (this.successorPlans == null) {
this.successorPlans = new java.util.ArrayList<>();
}
this.successorPlans.add(successorPlansItem);
return this;
}
/**
* .
*
* @return successorPlans
*/
@Schema(description = "")
public java.util.List getSuccessorPlans() {
return successorPlans;
}
/** setSuccessorPlans. */
public void setSuccessorPlans(java.util.List successorPlans) {
this.successorPlans = successorPlans;
}
/**
* 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;
}
BillingPlanResponse billingPlanResponse = (BillingPlanResponse) o;
return Objects.equals(this.billingPlan, billingPlanResponse.billingPlan)
&& Objects.equals(this.successorPlans, billingPlanResponse.successorPlans);
}
/** Returns the HashCode. */
@Override
public int hashCode() {
return Objects.hash(billingPlan, successorPlans);
}
/** Converts the given object to string. */
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BillingPlanResponse {\n");
sb.append(" billingPlan: ").append(toIndentedString(billingPlan)).append("\n");
sb.append(" successorPlans: ").append(toIndentedString(successorPlans)).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 ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy