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

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

There is a newer version: 28.4.0
Show newest version
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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy