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

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

Go to download

The Payline API provides access to the various functions of the Payline payment solution. It is based on standard web service components, which include the SOAP protocol, the WSDL and XSD definition languages. These standards are supported by a large range of development tools on multiple platforms. This SDK covers all the functions of the Payline payment solution.

There is a newer version: 4.77.1
Show newest version

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
 * 						payment
 * 					
 * 
 * 

Java class for payment complex type. * *

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

 * <complexType name="payment">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="action" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="mode" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="contractNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="differedActionDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="method" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="softDescriptor" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="cardBrand" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="registrationToken" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="cumulatedAmount" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "payment", namespace = "http://obj.ws.payline.experian.com", propOrder = { "amount", "currency", "action", "mode", "contractNumber", "differedActionDate", "method", "softDescriptor", "cardBrand", "registrationToken", "cumulatedAmount" }) public class Payment { @XmlElement(required = true, nillable = true) protected String amount; @XmlElement(required = true) protected String currency; @XmlElement(required = true) protected String action; @XmlElement(required = true) protected String mode; @XmlElement(nillable = true) protected String contractNumber; @XmlElement(nillable = true) protected String differedActionDate; @XmlElement(nillable = true) protected String method; @XmlElement(nillable = true) protected String softDescriptor; @XmlElement(nillable = true) protected String cardBrand; @XmlElement(nillable = true) protected String registrationToken; @XmlElement(nillable = true) protected String cumulatedAmount; /** * 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 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; } /** * Gets the value of the action property. * * @return * possible object is * {@link String } * */ public String getAction() { return action; } /** * Sets the value of the action property. * * @param value * allowed object is * {@link String } * */ public void setAction(String value) { this.action = value; } /** * Gets the value of the mode property. * * @return * possible object is * {@link String } * */ public String getMode() { return mode; } /** * Sets the value of the mode property. * * @param value * allowed object is * {@link String } * */ public void setMode(String value) { this.mode = value; } /** * Gets the value of the contractNumber property. * * @return * possible object is * {@link String } * */ public String getContractNumber() { return contractNumber; } /** * Sets the value of the contractNumber property. * * @param value * allowed object is * {@link String } * */ public void setContractNumber(String value) { this.contractNumber = value; } /** * Gets the value of the differedActionDate property. * * @return * possible object is * {@link String } * */ public String getDifferedActionDate() { return differedActionDate; } /** * Sets the value of the differedActionDate property. * * @param value * allowed object is * {@link String } * */ public void setDifferedActionDate(String value) { this.differedActionDate = value; } /** * Gets the value of the method property. * * @return * possible object is * {@link String } * */ public String getMethod() { return method; } /** * Sets the value of the method property. * * @param value * allowed object is * {@link String } * */ public void setMethod(String value) { this.method = value; } /** * Gets the value of the softDescriptor property. * * @return * possible object is * {@link String } * */ public String getSoftDescriptor() { return softDescriptor; } /** * Sets the value of the softDescriptor property. * * @param value * allowed object is * {@link String } * */ public void setSoftDescriptor(String value) { this.softDescriptor = value; } /** * Gets the value of the cardBrand property. * * @return * possible object is * {@link String } * */ public String getCardBrand() { return cardBrand; } /** * Sets the value of the cardBrand property. * * @param value * allowed object is * {@link String } * */ public void setCardBrand(String value) { this.cardBrand = value; } /** * Gets the value of the registrationToken property. * * @return * possible object is * {@link String } * */ public String getRegistrationToken() { return registrationToken; } /** * Sets the value of the registrationToken property. * * @param value * allowed object is * {@link String } * */ public void setRegistrationToken(String value) { this.registrationToken = value; } /** * Gets the value of the cumulatedAmount property. * * @return * possible object is * {@link String } * */ public String getCumulatedAmount() { return cumulatedAmount; } /** * Sets the value of the cumulatedAmount property. * * @param value * allowed object is * {@link String } * */ public void setCumulatedAmount(String value) { this.cumulatedAmount = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy