All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adyen.model.nexo.SignaturePoint Maven / Gradle / Ivy

There is a newer version: 28.4.0
Show newest version
package com.adyen.model.nexo;

import io.swagger.v3.oas.annotations.media.Schema;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
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. */ @XmlElement(name = "X", required = true) @Schema(description = "Abscissa of a point coordinates.") protected String x; /** * The Y. */ @XmlElement(name = "Y", required = true) @Schema(description = "Ordinate of a point coordinates.") 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy