com.adyen.model.nexo.AreaSize 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: Size of an area -- Usage: Contain the size of the pad area where the signature is written, given with the maximum abissa and ordinate values (X and Y). The maximum value is "FFFF".
*
* Java class for AreaSize complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AreaSize">
* <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 = "AreaSize")
public class AreaSize {
/**
* 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;
}
}