Package com.adyen.model.nexo
Class SignaturePoint
- java.lang.Object
-
- com.adyen.model.nexo.SignaturePoint
-
public class SignaturePoint extends Object
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>
-
-
Constructor Summary
Constructors Constructor Description SignaturePoint()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetX()Gets the value of the x property.StringgetY()Gets the value of the y property.voidsetX(String value)Sets the value of the x property.voidsetY(String value)Sets the value of the y property.
-