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

com.adyen.model.nexo.InputResponse 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;


/**
 * Definition: Content of the Input Response messageType. -- Usage: It conveys:The result of the outputs, parallel to the messageType request, except if response not required and absent.The result of the input
 *
 * 

Java class for InputResponse complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="InputResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="OutputResult" type="{}OutputResult" minOccurs="0"/>
 *         <element name="InputResult" type="{}InputResult"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InputResponse", propOrder = { "outputResult", "inputResult" }) public class InputResponse { /** * The Output result. */ @XmlElement(name = "OutputResult") protected OutputResult outputResult; /** * The Input result. */ @XmlElement(name = "InputResult", required = true) protected InputResult inputResult; /** * Gets the value of the outputResult property. * * @return possible object is {@link OutputResult } */ public OutputResult getOutputResult() { return outputResult; } /** * Sets the value of the outputResult property. * * @param value allowed object is {@link OutputResult } */ public void setOutputResult(OutputResult value) { this.outputResult = value; } /** * Gets the value of the inputResult property. * * @return possible object is {@link InputResult } */ public InputResult getInputResult() { return inputResult; } /** * Sets the value of the inputResult property. * * @param value allowed object is {@link InputResult } */ public void setInputResult(InputResult value) { this.inputResult = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy