com.adyen.model.nexo.InputRequest 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Definition: Content of the Input Request messageType. -- Usage: It conveys data to display and the way to process the display, and contains the complete content to display. In addition to the display on the Input Device, it might contain an operation (the DisplayOutput element) per Display Device type.
*
* Java class for InputRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="InputRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="DisplayOutput" type="{}DisplayOutput" minOccurs="0"/>
* <element name="InputData" type="{}InputData"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InputRequest", propOrder = {
"displayOutput",
"inputData"
})
public class InputRequest {
/**
* The Display output.
*/
@XmlElement(name = "DisplayOutput")
protected DisplayOutput displayOutput;
/**
* The Input data.
*/
@XmlElement(name = "InputData", required = true)
protected InputData inputData;
/**
* 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 inputData property.
*
* @return possible object is {@link InputData }
*/
public InputData getInputData() {
return inputData;
}
/**
* Sets the value of the inputData property.
*
* @param value allowed object is {@link InputData }
*/
public void setInputData(InputData value) {
this.inputData = value;
}
}