com.adyen.model.nexo.TransactionStatusResponse 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: Content of the TransactionStatus Response messageType. -- Usage: It conveys Information related to the status of the last or current Payment, Loyalty or Reversal transaction.
*
* Java class for TransactionStatusResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TransactionStatusResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Response" type="{}Response"/>
* <element name="MessageReference" type="{}MessageReference" minOccurs="0"/>
* <element name="RepeatedMessageResponse" type="{}RepeatedMessageResponse" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TransactionStatusResponse", propOrder = {
"response",
"messageReference",
"repeatedMessageResponse"
})
public class TransactionStatusResponse {
/**
* The Response.
*/
@XmlElement(name = "Response", required = true)
protected Response response;
/**
* The Message reference.
*/
@XmlElement(name = "MessageReference")
protected MessageReference messageReference;
/**
* The Repeated message response.
*/
@XmlElement(name = "RepeatedMessageResponse")
protected RepeatedMessageResponse repeatedMessageResponse;
/**
* 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 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 repeatedMessageResponse property.
*
* @return possible object is {@link RepeatedMessageResponse }
*/
public RepeatedMessageResponse getRepeatedMessageResponse() {
return repeatedMessageResponse;
}
/**
* Sets the value of the repeatedMessageResponse property.
*
* @param value allowed object is {@link RepeatedMessageResponse }
*/
public void setRepeatedMessageResponse(RepeatedMessageResponse value) {
this.repeatedMessageResponse = value;
}
}