Package com.adyen.model.nexo
Class TransmitResponse
- java.lang.Object
-
- com.adyen.model.nexo.TransmitResponse
-
public class TransmitResponse extends Object
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>
-
-
Constructor Summary
Constructors Constructor Description TransmitResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getMessage()Gets the value of the messageType property.ResponsegetResponse()Gets the value of the response property.voidsetMessage(byte[] value)Sets the value of the messageType property.voidsetResponse(Response value)Sets the value of the response property.
-
-
-
Field Detail
-
response
protected Response response
The Response.
-
message
protected byte[] message
The Message.
-
-
Method Detail
-
getResponse
public Response getResponse()
Gets the value of the response property.- Returns:
- possible object is
Response
-
setResponse
public void setResponse(Response value)
Sets the value of the response property.- Parameters:
value- allowed object isResponse
-
getMessage
public byte[] getMessage()
Gets the value of the messageType property.- Returns:
- possible object is byte[]
-
setMessage
public void setMessage(byte[] value)
Sets the value of the messageType property.- Parameters:
value- allowed object is byte[]
-
-