package echosign.api.clientv20.dto19; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for SignerFormFieldLocation complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SignerFormFieldLocation"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="height" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/> * <element name="left" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/> * <element name="pageNumber" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="top" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/> * <element name="width" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SignerFormFieldLocation", propOrder = { "height", "left", "pageNumber", "top", "width" }) public class SignerFormFieldLocation { protected Double height; protected Double left; protected Integer pageNumber; protected Double top; protected Double width; /** * Gets the value of the height property. * * @return * possible object is * {@link Double } * */ public Double getHeight() { return height; } /** * Sets the value of the height property. * * @param value * allowed object is * {@link Double } * */ public void setHeight(Double value) { this.height = value; } /** * Gets the value of the left property. * * @return * possible object is * {@link Double } * */ public Double getLeft() { return left; } /** * Sets the value of the left property. * * @param value * allowed object is * {@link Double } * */ public void setLeft(Double value) { this.left = value; } /** * Gets the value of the pageNumber property. * * @return * possible object is * {@link Integer } * */ public Integer getPageNumber() { return pageNumber; } /** * Sets the value of the pageNumber property. * * @param value * allowed object is * {@link Integer } * */ public void setPageNumber(Integer value) { this.pageNumber = value; } /** * Gets the value of the top property. * * @return * possible object is * {@link Double } * */ public Double getTop() { return top; } /** * Sets the value of the top property. * * @param value * allowed object is * {@link Double } * */ public void setTop(Double value) { this.top = value; } /** * Gets the value of the width property. * * @return * possible object is * {@link Double } * */ public Double getWidth() { return width; } /** * Sets the value of the width property. * * @param value * allowed object is * {@link Double } * */ public void setWidth(Double value) { this.width = value; } }