Package com.adyen.model.nexo
Class DisplayRequest
- java.lang.Object
-
- com.adyen.model.nexo.DisplayRequest
-
public class DisplayRequest extends Object
Definition: Content of the Display Request messageType. -- Usage: It conveys the data to display and the way to process the display. It contains the complete content to display. It might contain an operation (the DisplayOutput element) per Display Device type.Java class for DisplayRequest complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="DisplayRequest"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="DisplayOutput" type="{}DisplayOutput" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<DisplayOutput>displayOutputThe Display output.
-
Constructor Summary
Constructors Constructor Description DisplayRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<DisplayOutput>getDisplayOutput()Gets the value of the displayOutput property.
-
-
-
Field Detail
-
displayOutput
protected List<DisplayOutput> displayOutput
The Display output.
-
-
Method Detail
-
getDisplayOutput
public List<DisplayOutput> getDisplayOutput()
Gets the value of the displayOutput property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the displayOutput property.For example, to add a new item, do as follows:
getDisplayOutput().add(newItem);Objects of the following type(s) are allowed in the list
DisplayOutput- Returns:
- the display output
-
-