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

com.lyra.vads.ws.v5.PaymentResponse Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version

package com.lyra.vads.ws.v5;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for paymentResponse complex type. * *

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

 * <complexType name="paymentResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="transactionId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="effectiveAmount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="effectiveCurrency" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="expectedCaptureDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="manualValidation" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="operationType" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="creationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="externalTransactionId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="liabilityShift" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="transactionUuid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="sequenceNumber" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="paymentType" type="{http://v5.ws.vads.lyra.com/}paymentType" minOccurs="0"/>
 *         <element name="paymentError" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "paymentResponse", propOrder = { "transactionId", "amount", "currency", "effectiveAmount", "effectiveCurrency", "expectedCaptureDate", "manualValidation", "operationType", "creationDate", "externalTransactionId", "liabilityShift", "transactionUuid", "sequenceNumber", "paymentType", "paymentError" }) public class PaymentResponse { protected String transactionId; protected Long amount; protected Integer currency; protected Long effectiveAmount; protected Integer effectiveCurrency; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar expectedCaptureDate; protected Integer manualValidation; protected Integer operationType; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar creationDate; protected String externalTransactionId; protected String liabilityShift; protected String transactionUuid; protected Integer sequenceNumber; protected PaymentType paymentType; protected Integer paymentError; /** * Gets the value of the transactionId property. * * @return * possible object is * {@link String } * */ public String getTransactionId() { return transactionId; } /** * Sets the value of the transactionId property. * * @param value * allowed object is * {@link String } * */ public void setTransactionId(String value) { this.transactionId = value; } /** * Gets the value of the amount property. * * @return * possible object is * {@link Long } * */ public Long getAmount() { return amount; } /** * Sets the value of the amount property. * * @param value * allowed object is * {@link Long } * */ public void setAmount(Long value) { this.amount = value; } /** * Gets the value of the currency property. * * @return * possible object is * {@link Integer } * */ public Integer getCurrency() { return currency; } /** * Sets the value of the currency property. * * @param value * allowed object is * {@link Integer } * */ public void setCurrency(Integer value) { this.currency = value; } /** * Gets the value of the effectiveAmount property. * * @return * possible object is * {@link Long } * */ public Long getEffectiveAmount() { return effectiveAmount; } /** * Sets the value of the effectiveAmount property. * * @param value * allowed object is * {@link Long } * */ public void setEffectiveAmount(Long value) { this.effectiveAmount = value; } /** * Gets the value of the effectiveCurrency property. * * @return * possible object is * {@link Integer } * */ public Integer getEffectiveCurrency() { return effectiveCurrency; } /** * Sets the value of the effectiveCurrency property. * * @param value * allowed object is * {@link Integer } * */ public void setEffectiveCurrency(Integer value) { this.effectiveCurrency = value; } /** * Gets the value of the expectedCaptureDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getExpectedCaptureDate() { return expectedCaptureDate; } /** * Sets the value of the expectedCaptureDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setExpectedCaptureDate(XMLGregorianCalendar value) { this.expectedCaptureDate = value; } /** * Gets the value of the manualValidation property. * * @return * possible object is * {@link Integer } * */ public Integer getManualValidation() { return manualValidation; } /** * Sets the value of the manualValidation property. * * @param value * allowed object is * {@link Integer } * */ public void setManualValidation(Integer value) { this.manualValidation = value; } /** * Gets the value of the operationType property. * * @return * possible object is * {@link Integer } * */ public Integer getOperationType() { return operationType; } /** * Sets the value of the operationType property. * * @param value * allowed object is * {@link Integer } * */ public void setOperationType(Integer value) { this.operationType = value; } /** * Gets the value of the creationDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreationDate() { return creationDate; } /** * Sets the value of the creationDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreationDate(XMLGregorianCalendar value) { this.creationDate = value; } /** * Gets the value of the externalTransactionId property. * * @return * possible object is * {@link String } * */ public String getExternalTransactionId() { return externalTransactionId; } /** * Sets the value of the externalTransactionId property. * * @param value * allowed object is * {@link String } * */ public void setExternalTransactionId(String value) { this.externalTransactionId = value; } /** * Gets the value of the liabilityShift property. * * @return * possible object is * {@link String } * */ public String getLiabilityShift() { return liabilityShift; } /** * Sets the value of the liabilityShift property. * * @param value * allowed object is * {@link String } * */ public void setLiabilityShift(String value) { this.liabilityShift = value; } /** * Gets the value of the transactionUuid property. * * @return * possible object is * {@link String } * */ public String getTransactionUuid() { return transactionUuid; } /** * Sets the value of the transactionUuid property. * * @param value * allowed object is * {@link String } * */ public void setTransactionUuid(String value) { this.transactionUuid = value; } /** * Gets the value of the sequenceNumber property. * * @return * possible object is * {@link Integer } * */ public Integer getSequenceNumber() { return sequenceNumber; } /** * Sets the value of the sequenceNumber property. * * @param value * allowed object is * {@link Integer } * */ public void setSequenceNumber(Integer value) { this.sequenceNumber = value; } /** * Gets the value of the paymentType property. * * @return * possible object is * {@link PaymentType } * */ public PaymentType getPaymentType() { return paymentType; } /** * Sets the value of the paymentType property. * * @param value * allowed object is * {@link PaymentType } * */ public void setPaymentType(PaymentType value) { this.paymentType = value; } /** * Gets the value of the paymentError property. * * @return * possible object is * {@link Integer } * */ public Integer getPaymentError() { return paymentError; } /** * Sets the value of the paymentError property. * * @param value * allowed object is * {@link Integer } * */ public void setPaymentError(Integer value) { this.paymentError = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy