com.docusign.esign.model.SmartSectionAnchorPosition 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;
/** SmartSectionAnchorPosition. */
public class SmartSectionAnchorPosition {
@JsonProperty("pageNumber")
private Integer pageNumber = null;
@JsonProperty("xPosition")
private Double xPosition = null;
@JsonProperty("yPosition")
private Double yPosition = null;
/**
* pageNumber.
*
* @return SmartSectionAnchorPosition
*/
public SmartSectionAnchorPosition pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* Specifies the page number on which the tab is located..
*
* @return pageNumber
*/
@Schema(description = "Specifies the page number on which the tab is located.")
public Integer getPageNumber() {
return pageNumber;
}
/** setPageNumber. */
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
/**
* xPosition.
*
* @return SmartSectionAnchorPosition
*/
public SmartSectionAnchorPosition xPosition(Double xPosition) {
this.xPosition = xPosition;
return this;
}
/**
* This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when
* determining position..
*
* @return xPosition
*/
@Schema(
description =
"This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position.")
public Double getXPosition() {
return xPosition;
}
/** setXPosition. */
public void setXPosition(Double xPosition) {
this.xPosition = xPosition;
}
/**
* yPosition.
*
* @return SmartSectionAnchorPosition
*/
public SmartSectionAnchorPosition yPosition(Double yPosition) {
this.yPosition = yPosition;
return this;
}
/**
* This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when
* determining position..
*
* @return yPosition
*/
@Schema(
description =
"This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position.")
public Double getYPosition() {
return yPosition;
}
/** setYPosition. */
public void setYPosition(Double yPosition) {
this.yPosition = yPosition;
}
/**
* 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;
}
SmartSectionAnchorPosition smartSectionAnchorPosition = (SmartSectionAnchorPosition) o;
return Objects.equals(this.pageNumber, smartSectionAnchorPosition.pageNumber)
&& Objects.equals(this.xPosition, smartSectionAnchorPosition.xPosition)
&& Objects.equals(this.yPosition, smartSectionAnchorPosition.yPosition);
}
/** Returns the HashCode. */
@Override
public int hashCode() {
return Objects.hash(pageNumber, xPosition, yPosition);
}
/** Converts the given object to string. */
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SmartSectionAnchorPosition {\n");
sb.append(" pageNumber: ").append(toIndentedString(pageNumber)).append("\n");
sb.append(" xPosition: ").append(toIndentedString(xPosition)).append("\n");
sb.append(" yPosition: ").append(toIndentedString(yPosition)).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 ");
}
}