Package com.adyen.model.nexo
Class InputUpdate
- java.lang.Object
-
- com.adyen.model.nexo.InputUpdate
-
public class InputUpdate extends Object
Definition: Content of the Input Update messageType. -- Usage: It conveys update of the display of an Input request in progress.Java class for InputUpdate complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="InputUpdate"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="MessageReference" type="{}MessageReference"/> <element name="OutputContent" type="{}OutputContent"/> <element name="MenuEntry" type="{}MenuEntry" maxOccurs="unbounded" minOccurs="0"/> <element name="OutputSignature" type="{}OutputSignature" minOccurs="0"/> </sequence> <attribute name="MinLength" type="{}MinLength" /> <attribute name="MaxLength" type="{}MaxLength" /> <attribute name="MaxDecimalLength" type="{}MaxDecimalLength" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected BigIntegermaxDecimalLengthThe Max decimal length.protected BigIntegermaxLengthThe Max length.protected List<MenuEntry>menuEntryThe Menu entry.protected MessageReferencemessageReferenceThe Message reference.protected BigIntegerminLengthThe Min length.protected OutputContentoutputContentThe Output content.protected byte[]outputSignatureThe Output signature.
-
Constructor Summary
Constructors Constructor Description InputUpdate()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigIntegergetMaxDecimalLength()Gets the value of the maxDecimalLength property.BigIntegergetMaxLength()Gets the value of the maxLength property.List<MenuEntry>getMenuEntry()Gets the value of the menuEntry property.MessageReferencegetMessageReference()Gets the value of the messageReference property.BigIntegergetMinLength()Gets the value of the minLength property.OutputContentgetOutputContent()Gets the value of the outputContent property.byte[]getOutputSignature()Gets the value of the outputSignature property.voidsetMaxDecimalLength(BigInteger value)Sets the value of the maxDecimalLength property.voidsetMaxLength(BigInteger value)Sets the value of the maxLength property.voidsetMessageReference(MessageReference value)Sets the value of the messageReference property.voidsetMinLength(BigInteger value)Sets the value of the minLength property.voidsetOutputContent(OutputContent value)Sets the value of the outputContent property.voidsetOutputSignature(byte[] value)Sets the value of the outputSignature property.
-
-
-
Field Detail
-
messageReference
protected MessageReference messageReference
The Message reference.
-
outputContent
protected OutputContent outputContent
The Output content.
-
outputSignature
protected byte[] outputSignature
The Output signature.
-
minLength
protected BigInteger minLength
The Min length.
-
maxLength
protected BigInteger maxLength
The Max length.
-
maxDecimalLength
protected BigInteger maxDecimalLength
The Max decimal length.
-
-
Method Detail
-
getMessageReference
public MessageReference getMessageReference()
Gets the value of the messageReference property.- Returns:
- possible object is
MessageReference
-
setMessageReference
public void setMessageReference(MessageReference value)
Sets the value of the messageReference property.- Parameters:
value- allowed object isMessageReference
-
getOutputContent
public OutputContent getOutputContent()
Gets the value of the outputContent property.- Returns:
- possible object is
OutputContent
-
setOutputContent
public void setOutputContent(OutputContent value)
Sets the value of the outputContent property.- Parameters:
value- allowed object isOutputContent
-
getMenuEntry
public List<MenuEntry> getMenuEntry()
Gets the value of the menuEntry property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the menuEntry property.For example, to add a new item, do as follows:
getMenuEntry().add(newItem);Objects of the following type(s) are allowed in the list
MenuEntry- Returns:
- the menu entry
-
getOutputSignature
public byte[] getOutputSignature()
Gets the value of the outputSignature property.- Returns:
- possible object is byte[]
-
setOutputSignature
public void setOutputSignature(byte[] value)
Sets the value of the outputSignature property.- Parameters:
value- allowed object is byte[]
-
getMinLength
public BigInteger getMinLength()
Gets the value of the minLength property.- Returns:
- possible object is
BigInteger
-
setMinLength
public void setMinLength(BigInteger value)
Sets the value of the minLength property.- Parameters:
value- allowed object isBigInteger
-
getMaxLength
public BigInteger getMaxLength()
Gets the value of the maxLength property.- Returns:
- possible object is
BigInteger
-
setMaxLength
public void setMaxLength(BigInteger value)
Sets the value of the maxLength property.- Parameters:
value- allowed object isBigInteger
-
getMaxDecimalLength
public BigInteger getMaxDecimalLength()
Gets the value of the maxDecimalLength property.- Returns:
- possible object is
BigInteger
-
setMaxDecimalLength
public void setMaxDecimalLength(BigInteger value)
Sets the value of the maxDecimalLength property.- Parameters:
value- allowed object isBigInteger
-
-