com.docusign.esign.model.AppStoreReceipt 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;
/** Contains information about an APP store receipt.. */
@Schema(description = "Contains information about an APP store receipt.")
public class AppStoreReceipt {
@JsonProperty("downgradeProductId")
private String downgradeProductId = null;
@JsonProperty("isDowngradeCancellation")
private String isDowngradeCancellation = null;
@JsonProperty("productId")
private String productId = null;
@JsonProperty("receiptData")
private String receiptData = null;
/**
* downgradeProductId.
*
* @return AppStoreReceipt
*/
public AppStoreReceipt downgradeProductId(String downgradeProductId) {
this.downgradeProductId = downgradeProductId;
return this;
}
/**
* .
*
* @return downgradeProductId
*/
@Schema(description = "")
public String getDowngradeProductId() {
return downgradeProductId;
}
/** setDowngradeProductId. */
public void setDowngradeProductId(String downgradeProductId) {
this.downgradeProductId = downgradeProductId;
}
/**
* isDowngradeCancellation.
*
* @return AppStoreReceipt
*/
public AppStoreReceipt isDowngradeCancellation(String isDowngradeCancellation) {
this.isDowngradeCancellation = isDowngradeCancellation;
return this;
}
/**
* .
*
* @return isDowngradeCancellation
*/
@Schema(description = "")
public String getIsDowngradeCancellation() {
return isDowngradeCancellation;
}
/** setIsDowngradeCancellation. */
public void setIsDowngradeCancellation(String isDowngradeCancellation) {
this.isDowngradeCancellation = isDowngradeCancellation;
}
/**
* productId.
*
* @return AppStoreReceipt
*/
public AppStoreReceipt productId(String productId) {
this.productId = productId;
return this;
}
/**
* .
*
* @return productId
*/
@Schema(description = "")
public String getProductId() {
return productId;
}
/** setProductId. */
public void setProductId(String productId) {
this.productId = productId;
}
/**
* receiptData.
*
* @return AppStoreReceipt
*/
public AppStoreReceipt receiptData(String receiptData) {
this.receiptData = receiptData;
return this;
}
/**
* Reserved: TBD.
*
* @return receiptData
*/
@Schema(description = "Reserved: TBD")
public String getReceiptData() {
return receiptData;
}
/** setReceiptData. */
public void setReceiptData(String receiptData) {
this.receiptData = receiptData;
}
/**
* 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;
}
AppStoreReceipt appStoreReceipt = (AppStoreReceipt) o;
return Objects.equals(this.downgradeProductId, appStoreReceipt.downgradeProductId)
&& Objects.equals(this.isDowngradeCancellation, appStoreReceipt.isDowngradeCancellation)
&& Objects.equals(this.productId, appStoreReceipt.productId)
&& Objects.equals(this.receiptData, appStoreReceipt.receiptData);
}
/** Returns the HashCode. */
@Override
public int hashCode() {
return Objects.hash(downgradeProductId, isDowngradeCancellation, productId, receiptData);
}
/** Converts the given object to string. */
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class AppStoreReceipt {\n");
sb.append(" downgradeProductId: ").append(toIndentedString(downgradeProductId)).append("\n");
sb.append(" isDowngradeCancellation: ")
.append(toIndentedString(isDowngradeCancellation))
.append("\n");
sb.append(" productId: ").append(toIndentedString(productId)).append("\n");
sb.append(" receiptData: ").append(toIndentedString(receiptData)).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 ");
}
}