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

com.adyen.model.nexo.RepeatedMessageResponse 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 requested Message Response. -- Usage: Allow the knowledge of the last Payment, Loyalty or Reversal transaction
 *
 * 

Java class for RepeatedMessageResponse complex type. * *

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

 * <complexType name="RepeatedMessageResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="MessageHeader" type="{}MessageHeader"/>
 *         <choice>
 *           <element name="LoyaltyResponse" type="{}LoyaltyResponse"/>
 *           <element name="PaymentResponse" type="{}PaymentResponse"/>
 *           <element name="ReversalResponse" type="{}ReversalResponse"/>
 *           <element name="StoredValueResponse" type="{}StoredValueResponse"/>
 *           <element name="CardAcquisitionResponse" type="{}CardAcquisitionResponse"/>
 *           <element name="CardReaderAPDUResponse" type="{}CardReaderAPDUResponse"/>
 *         </choice>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RepeatedMessageResponse", propOrder = { "repeatedResponseMessageBody", "messageHeader" }) public class RepeatedMessageResponse { /** * The Repeated message response body. */ @XmlElement(name = "RepeatedResponseMessageBody", required = true) protected RepeatedResponseMessageBody repeatedResponseMessageBody; /** * The Message header. */ @XmlElement(name = "MessageHeader", required = true) protected MessageHeader messageHeader; /** * Gets the value of the repeatedResponseMessageBody property. * * @return possible object is {@link RepeatedResponseMessageBody } */ public RepeatedResponseMessageBody getRepeatedResponseMessageBody() { return repeatedResponseMessageBody; } /** * Sets the value of the repeatedResponseMessageBody property. * * @param value allowed object is {@link RepeatedResponseMessageBody } */ public void setRepeatedResponseMessageBody(RepeatedResponseMessageBody value) { this.repeatedResponseMessageBody = value; } /** * Gets the value of the messageHeader property. * * @return possible object is {@link MessageHeader } */ public MessageHeader getMessageHeader() { return messageHeader; } /** * Sets the value of the messageHeader property. * * @param value allowed object is {@link MessageHeader } */ public void setMessageHeader(MessageHeader value) { this.messageHeader = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy