Package com.adyen.model.nexo
Class TransactionStatusRequest
- java.lang.Object
-
- com.adyen.model.nexo.TransactionStatusRequest
-
public class TransactionStatusRequest extends Object
Definition: Content of the TransactionStatus Request messageType. -- Usage: It conveys Information requested for status of the last or current Payment, Loyalty or Reversal transaction.Java class for TransactionStatusRequest complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="TransactionStatusRequest"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="MessageReference" type="{}MessageReference" minOccurs="0"/> <element name="DocumentQualifier" type="{}DocumentQualifierType" maxOccurs="2" minOccurs="0"/> </sequence> <attribute name="ReceiptReprintFlag" type="{}ReceiptReprintFlag" default="false" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<DocumentQualifierType>documentQualifierThe Document qualifier.protected MessageReferencemessageReferenceThe Message reference.protected BooleanreceiptReprintFlagThe Receipt reprint flag.
-
Constructor Summary
Constructors Constructor Description TransactionStatusRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<DocumentQualifierType>getDocumentQualifier()Gets the value of the documentQualifier property.MessageReferencegetMessageReference()Gets the value of the messageReference property.booleanisReceiptReprintFlag()Gets the value of the receiptReprintFlag property.voidsetMessageReference(MessageReference value)Sets the value of the messageReference property.voidsetReceiptReprintFlag(Boolean value)Sets the value of the receiptReprintFlag property.
-
-
-
Field Detail
-
messageReference
protected MessageReference messageReference
The Message reference.
-
documentQualifier
protected List<DocumentQualifierType> documentQualifier
The Document qualifier.
-
receiptReprintFlag
protected Boolean receiptReprintFlag
The Receipt reprint flag.
-
-
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
-
getDocumentQualifier
public List<DocumentQualifierType> getDocumentQualifier()
Gets the value of the documentQualifier 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 documentQualifier property.For example, to add a new item, do as follows:
getDocumentQualifier().add(newItem);Objects of the following type(s) are allowed in the list
DocumentQualifierType- Returns:
- the document qualifier
-
isReceiptReprintFlag
public boolean isReceiptReprintFlag()
Gets the value of the receiptReprintFlag property.- Returns:
- possible object is
Boolean
-
-