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

com.adyen.model.nexo.TransmitResponse Maven / Gradle / Ivy

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 Transmit Response messageType. -- Usage: It conveys the response of the transmission.
 *
 * 

Java class for TransmitResponse complex type. * *

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

 * <complexType name="TransmitResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Response" type="{}Response"/>
 *         <element name="Message" type="{}Message" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TransmitResponse", propOrder = { "response", "message" }) public class TransmitResponse { /** * The Response. */ @XmlElement(name = "Response", required = true) protected Response response; /** * The Message. */ @XmlElement(name = "Message") protected byte[] message; /** * 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 messageType property. * * @return possible object is byte[] */ public byte[] getMessage() { return message; } /** * Sets the value of the messageType property. * * @param value allowed object is byte[] */ public void setMessage(byte[] value) { this.message = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy