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

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

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;
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") @Schema(description = "Information to display and the way to process the display.") protected DisplayOutput displayOutput; /** * The Max waiting time. */ @XmlElement(name = "MaxWaitingTime") @Schema(description = "Maximum time to wait for the request processing in seconds.") 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy