com.adyen.model.nexo.SignaturePoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
package com.adyen.model.nexo;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Definition: Coordinates of a point where the pen changes direction or lift. -- Usage: Contain the Coordinates of a point of the written signature where the pen changes direction or lift where (X and Y).When the signer lifts the pen, both X and Y have the value "FFFF".
*
* Java class for SignaturePoint complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SignaturePoint">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="X" use="required" type="{}X" />
* <attribute name="Y" use="required" type="{}Y" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SignaturePoint")
public class SignaturePoint {
/**
* The X.
*/
@XmlAttribute(name = "X", required = true)
protected String x;
/**
* The Y.
*/
@XmlAttribute(name = "Y", required = true)
protected String y;
/**
* Gets the value of the x property.
*
* @return possible object is {@link String }
*/
public String getX() {
return x;
}
/**
* Sets the value of the x property.
*
* @param value allowed object is {@link String }
*/
public void setX(String value) {
this.x = value;
}
/**
* Gets the value of the y property.
*
* @return possible object is {@link String }
*/
public String getY() {
return y;
}
/**
* Sets the value of the y property.
*
* @param value allowed object is {@link String }
*/
public void setY(String value) {
this.y = value;
}
}