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

com.adyen.model.nexo.DisplayRequest 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
import java.util.ArrayList;
import java.util.List;


/**
 * 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>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DisplayRequest", propOrder = { "displayOutput" }) public class DisplayRequest { /** * The Display output. */ @XmlElement(name = "DisplayOutput", required = true) protected List displayOutput; /** * 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 set method 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 * {@link DisplayOutput } * * @return the display output */ public List getDisplayOutput() { if (displayOutput == null) { displayOutput = new ArrayList(); } return this.displayOutput; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy