com.adyen.model.nexo.AbortRequest 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: Body of the Abort Request messageType. -- Usage: It conveys Information requested for identification of the messageType request carrying the transaction to abort. A messageType to display on the CustomerError Device could be sent by the Sale System (DisplayOutput).
*
* Java class for AbortRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AbortRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="MessageReference" type="{}MessageReference"/>
* <element name="AbortReason" type="{}AbortReason"/>
* <element name="DisplayOutput" type="{}DisplayOutput" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AbortRequest", propOrder = {
"messageReference",
"abortReason",
"displayOutput"
})
public class AbortRequest {
/**
* The Message reference.
*/
@XmlElement(name = "MessageReference", required = true)
protected MessageReference messageReference;
/**
* The Abort reason.
*/
@XmlElement(name = "AbortReason", required = true)
protected String abortReason;
/**
* The Display output.
*/
@XmlElement(name = "DisplayOutput")
protected DisplayOutput displayOutput;
/**
* Gets the value of the messageReference property.
*
* @return possible object is {@link MessageReference }
*/
public MessageReference getMessageReference() {
return messageReference;
}
/**
* Sets the value of the messageReference property.
*
* @param value allowed object is {@link MessageReference }
*/
public void setMessageReference(MessageReference value) {
this.messageReference = value;
}
/**
* Gets the value of the abortReason property.
*
* @return possible object is {@link String }
*/
public String getAbortReason() {
return abortReason;
}
/**
* Sets the value of the abortReason property.
*
* @param value allowed object is {@link String }
*/
public void setAbortReason(String value) {
this.abortReason = value;
}
/**
* 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;
}
}