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

com.payline.ws.model.AssociatedTransactions Maven / Gradle / Ivy


package com.payline.ws.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 * 						This element contains information about the
 * 						associated transactions
 * 					
 * 
 * 

Java class for associatedTransactions complex type. * *

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

 * <complexType name="associatedTransactions">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="transactionId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="date" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="originTransactionId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "associatedTransactions", namespace = "http://obj.ws.payline.experian.com", propOrder = { "transactionId", "type", "date", "amount", "status", "originTransactionId", "currency" }) public class AssociatedTransactions { @XmlElement(required = true) protected String transactionId; @XmlElement(required = true) protected String type; @XmlElement(required = true) protected String date; @XmlElement(required = true) protected String amount; @XmlElement(required = true) protected String status; @XmlElement(required = true) protected String originTransactionId; @XmlElement(nillable = true) protected String currency; /** * 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 type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the date property. * * @return * possible object is * {@link String } * */ public String getDate() { return date; } /** * Sets the value of the date property. * * @param value * allowed object is * {@link String } * */ public void setDate(String value) { this.date = value; } /** * Gets the value of the amount property. * * @return * possible object is * {@link String } * */ public String getAmount() { return amount; } /** * Sets the value of the amount property. * * @param value * allowed object is * {@link String } * */ public void setAmount(String value) { this.amount = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = value; } /** * Gets the value of the originTransactionId property. * * @return * possible object is * {@link String } * */ public String getOriginTransactionId() { return originTransactionId; } /** * Sets the value of the originTransactionId property. * * @param value * allowed object is * {@link String } * */ public void setOriginTransactionId(String value) { this.originTransactionId = value; } /** * Gets the value of the currency property. * * @return * possible object is * {@link String } * */ public String getCurrency() { return currency; } /** * Sets the value of the currency property. * * @param value * allowed object is * {@link String } * */ public void setCurrency(String value) { this.currency = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy