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

com.payline.ws.model.BillingRecord 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 element for a billing
 * 						record
 * 					
 * 
 * 

Java class for billingRecord complex type. * *

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

 * <complexType name="billingRecord">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <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="result" type="{http://obj.ws.payline.experian.com}result" minOccurs="0"/>
 *         <element name="transaction" type="{http://obj.ws.payline.experian.com}transaction" minOccurs="0"/>
 *         <element name="authorization" type="{http://obj.ws.payline.experian.com}authorization" minOccurs="0"/>
 *         <element name="nbTry" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="rank" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "billingRecord", namespace = "http://obj.ws.payline.experian.com", propOrder = { "date", "amount", "status", "result", "transaction", "authorization", "nbTry", "rank" }) public class BillingRecord { @XmlElement(required = true) protected String date; @XmlElement(required = true) protected String amount; @XmlElement(required = true) protected String status; @XmlElement(nillable = true) protected Result result; @XmlElement(nillable = true) protected Transaction transaction; @XmlElement(nillable = true) protected Authorization authorization; @XmlElement(nillable = true) protected String nbTry; @XmlElement(nillable = true) protected String rank; /** * 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 result property. * * @return * possible object is * {@link Result } * */ public Result getResult() { return result; } /** * Sets the value of the result property. * * @param value * allowed object is * {@link Result } * */ public void setResult(Result value) { this.result = value; } /** * Gets the value of the transaction property. * * @return * possible object is * {@link Transaction } * */ public Transaction getTransaction() { return transaction; } /** * Sets the value of the transaction property. * * @param value * allowed object is * {@link Transaction } * */ public void setTransaction(Transaction value) { this.transaction = value; } /** * Gets the value of the authorization property. * * @return * possible object is * {@link Authorization } * */ public Authorization getAuthorization() { return authorization; } /** * Sets the value of the authorization property. * * @param value * allowed object is * {@link Authorization } * */ public void setAuthorization(Authorization value) { this.authorization = value; } /** * Gets the value of the nbTry property. * * @return * possible object is * {@link String } * */ public String getNbTry() { return nbTry; } /** * Sets the value of the nbTry property. * * @param value * allowed object is * {@link String } * */ public void setNbTry(String value) { this.nbTry = value; } /** * Gets the value of the rank property. * * @return * possible object is * {@link String } * */ public String getRank() { return rank; } /** * Sets the value of the rank property. * * @param value * allowed object is * {@link String } * */ public void setRank(String value) { this.rank = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy