com.adyen.model.nexo.InputResult 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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Definition: Information related to the result the input. -- Usage: In the messageType response, it contains the result and the content of the input.
*
* Java class for InputResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="InputResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Response" type="{}Response"/>
* <element name="Input" type="{}Input" minOccurs="0"/>
* </sequence>
* <attribute name="Device" use="required" type="{}DeviceType" />
* <attribute name="InfoQualify" use="required" type="{}InfoQualifyType" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InputResult", propOrder = {
"response",
"input"
})
public class InputResult {
/**
* The Response.
*/
@XmlElement(name = "Response", required = true)
protected Response response;
/**
* The Input.
*/
@XmlElement(name = "Input")
protected Input input;
/**
* The Device.
*/
@XmlAttribute(name = "Device", required = true)
protected DeviceType device;
/**
* The Info qualify.
*/
@XmlAttribute(name = "InfoQualify", required = true)
protected InfoQualifyType infoQualify;
/**
* Gets the value of the response property.
*
* @return possible object is {@link Response }
*/
public Response getResponse() {
return response;
}
/**
* Sets the value of the response property.
*
* @param value allowed object is {@link Response }
*/
public void setResponse(Response value) {
this.response = value;
}
/**
* Gets the value of the input property.
*
* @return possible object is {@link Input }
*/
public Input getInput() {
return input;
}
/**
* Sets the value of the input property.
*
* @param value allowed object is {@link Input }
*/
public void setInput(Input value) {
this.input = value;
}
/**
* Gets the value of the device property.
*
* @return possible object is {@link DeviceType }
*/
public DeviceType getDevice() {
return device;
}
/**
* Sets the value of the device property.
*
* @param value allowed object is {@link DeviceType }
*/
public void setDevice(DeviceType value) {
this.device = value;
}
/**
* Gets the value of the infoQualify property.
*
* @return possible object is {@link InfoQualifyType }
*/
public InfoQualifyType getInfoQualify() {
return infoQualify;
}
/**
* Sets the value of the infoQualify property.
*
* @param value allowed object is {@link InfoQualifyType }
*/
public void setInfoQualify(InfoQualifyType value) {
this.infoQualify = value;
}
}