com.docusign.esign.model.ConciergeQueryRequest 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.
The newest version!
package com.docusign.esign.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.Objects;
/** ConciergeQueryRequest */
public class ConciergeQueryRequest {
@JsonProperty("accountManagementRepCountry")
private String accountManagementRepCountry = null;
@JsonProperty("contractCountry")
private String contractCountry = null;
@JsonProperty("planId")
private String planId = null;
@JsonProperty("region")
private String region = null;
@JsonProperty("shippingCountry")
private String shippingCountry = null;
public ConciergeQueryRequest accountManagementRepCountry(String accountManagementRepCountry) {
this.accountManagementRepCountry = accountManagementRepCountry;
return this;
}
/** @return accountManagementRepCountry */
@Schema(example = "null", description = "")
public String getAccountManagementRepCountry() {
return accountManagementRepCountry;
}
public void setAccountManagementRepCountry(String accountManagementRepCountry) {
this.accountManagementRepCountry = accountManagementRepCountry;
}
public ConciergeQueryRequest contractCountry(String contractCountry) {
this.contractCountry = contractCountry;
return this;
}
/** @return contractCountry */
@Schema(example = "null", description = "")
public String getContractCountry() {
return contractCountry;
}
public void setContractCountry(String contractCountry) {
this.contractCountry = contractCountry;
}
public ConciergeQueryRequest planId(String planId) {
this.planId = planId;
return this;
}
/** @return planId */
@Schema(example = "null", description = "")
public String getPlanId() {
return planId;
}
public void setPlanId(String planId) {
this.planId = planId;
}
public ConciergeQueryRequest region(String region) {
this.region = region;
return this;
}
/** @return region */
@Schema(example = "null", description = "")
public String getRegion() {
return region;
}
public void setRegion(String region) {
this.region = region;
}
public ConciergeQueryRequest shippingCountry(String shippingCountry) {
this.shippingCountry = shippingCountry;
return this;
}
/** @return shippingCountry */
@Schema(example = "null", description = "")
public String getShippingCountry() {
return shippingCountry;
}
public void setShippingCountry(String shippingCountry) {
this.shippingCountry = shippingCountry;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ConciergeQueryRequest conciergeQueryRequest = (ConciergeQueryRequest) o;
return Objects.equals(
this.accountManagementRepCountry, conciergeQueryRequest.accountManagementRepCountry)
&& Objects.equals(this.contractCountry, conciergeQueryRequest.contractCountry)
&& Objects.equals(this.planId, conciergeQueryRequest.planId)
&& Objects.equals(this.region, conciergeQueryRequest.region)
&& Objects.equals(this.shippingCountry, conciergeQueryRequest.shippingCountry);
}
@Override
public int hashCode() {
return Objects.hash(
accountManagementRepCountry, contractCountry, planId, region, shippingCountry);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ConciergeQueryRequest {\n");
sb.append(" accountManagementRepCountry: ")
.append(toIndentedString(accountManagementRepCountry))
.append("\n");
sb.append(" contractCountry: ").append(toIndentedString(contractCountry)).append("\n");
sb.append(" planId: ").append(toIndentedString(planId)).append("\n");
sb.append(" region: ").append(toIndentedString(region)).append("\n");
sb.append(" shippingCountry: ").append(toIndentedString(shippingCountry)).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 ");
}
}