Package com.adyen.model.nexo
Class TransmitRequest
- java.lang.Object
-
- com.adyen.model.nexo.TransmitRequest
-
public class TransmitRequest extends Object
Definition: Content of the Transmit Request messageType. -- Usage: It contains a messageType to transmit.Java class for TransmitRequest complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="TransmitRequest"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Message" type="{}Message"/> </sequence> <attribute name="WaitResponseFlag" type="{}WaitResponseFlag" default="false" /> <attribute name="MaximumTransmitTime" use="required" type="{}MaximumTransmitTime" /> <attribute name="DestinationAddress" use="required" type="{}DestinationAddress" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringdestinationAddressThe Destination address.protected BigIntegermaximumTransmitTimeThe Maximum transmit time.protected byte[]messageThe Message.protected BooleanwaitResponseFlagThe Wait response flag.
-
Constructor Summary
Constructors Constructor Description TransmitRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDestinationAddress()Gets the value of the destinationAddress property.BigIntegergetMaximumTransmitTime()Gets the value of the maximumTransmitTime property.byte[]getMessage()Gets the value of the messageType property.booleanisWaitResponseFlag()Gets the value of the waitResponseFlag property.voidsetDestinationAddress(String value)Sets the value of the destinationAddress property.voidsetMaximumTransmitTime(BigInteger value)Sets the value of the maximumTransmitTime property.voidsetMessage(byte[] value)Sets the value of the messageType property.voidsetWaitResponseFlag(Boolean value)Sets the value of the waitResponseFlag property.
-
-
-
Field Detail
-
message
protected byte[] message
The Message.
-
waitResponseFlag
protected Boolean waitResponseFlag
The Wait response flag.
-
maximumTransmitTime
protected BigInteger maximumTransmitTime
The Maximum transmit time.
-
destinationAddress
protected String destinationAddress
The Destination address.
-
-
Method Detail
-
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[]
-
isWaitResponseFlag
public boolean isWaitResponseFlag()
Gets the value of the waitResponseFlag property.- Returns:
- possible object is
Boolean
-
setWaitResponseFlag
public void setWaitResponseFlag(Boolean value)
Sets the value of the waitResponseFlag property.- Parameters:
value- allowed object isBoolean
-
getMaximumTransmitTime
public BigInteger getMaximumTransmitTime()
Gets the value of the maximumTransmitTime property.- Returns:
- possible object is
BigInteger
-
setMaximumTransmitTime
public void setMaximumTransmitTime(BigInteger value)
Sets the value of the maximumTransmitTime property.- Parameters:
value- allowed object isBigInteger
-
getDestinationAddress
public String getDestinationAddress()
Gets the value of the destinationAddress property.- Returns:
- possible object is
String
-
-