com.adyen.model.nexo.CardReaderPowerOffRequest 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
import java.math.BigInteger;
/**
* Definition: Content of the Card Reader Power-Off Request messageType. -- Usage: It contains a possible invitation messageType to display on the CashierInterface or the CustomerInterface, for removing the card.
*
* Java class for CardReaderPowerOffRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CardReaderPowerOffRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="DisplayOutput" type="{}DisplayOutput" minOccurs="0"/>
* </sequence>
* <attribute name="MaxWaitingTime" type="{}MaxWaitingTime" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CardReaderPowerOffRequest", propOrder = {
"displayOutput"
})
public class CardReaderPowerOffRequest {
/**
* The Display output.
*/
@XmlElement(name = "DisplayOutput")
protected DisplayOutput displayOutput;
/**
* The Max waiting time.
*/
@XmlAttribute(name = "MaxWaitingTime")
protected BigInteger maxWaitingTime;
/**
* Gets the value of the displayOutput property.
*
* @return possible object is {@link DisplayOutput }
*/
public DisplayOutput getDisplayOutput() {
return displayOutput;
}
/**
* Sets the value of the displayOutput property.
*
* @param value allowed object is {@link DisplayOutput }
*/
public void setDisplayOutput(DisplayOutput value) {
this.displayOutput = value;
}
/**
* Gets the value of the maxWaitingTime property.
*
* @return possible object is {@link BigInteger }
*/
public BigInteger getMaxWaitingTime() {
return maxWaitingTime;
}
/**
* Sets the value of the maxWaitingTime property.
*
* @param value allowed object is {@link BigInteger }
*/
public void setMaxWaitingTime(BigInteger value) {
this.maxWaitingTime = value;
}
}