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

com.payline.ws.model.Recurring 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 recurring
 * 						operation
 * 					
 * 
 * 

Java class for recurring complex type. * *

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

 * <complexType name="recurring">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="firstAmount" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="billingCycle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="billingLeft" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="billingDay" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="startDate" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="endDate" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="newAmount" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="amountModificationDate" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="billingRank" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "recurring", namespace = "http://obj.ws.payline.experian.com", propOrder = { "firstAmount", "amount", "billingCycle", "billingLeft", "billingDay", "startDate", "endDate", "newAmount", "amountModificationDate", "billingRank" }) public class Recurring { @XmlElement(required = true, nillable = true) protected String firstAmount; @XmlElement(required = true) protected String amount; @XmlElement(required = true) protected String billingCycle; @XmlElement(required = true) protected String billingLeft; @XmlElement(required = true, nillable = true) protected String billingDay; @XmlElement(required = true, nillable = true) protected String startDate; @XmlElement(required = true, nillable = true) protected String endDate; @XmlElement(required = true, nillable = true) protected String newAmount; @XmlElement(required = true, nillable = true) protected String amountModificationDate; @XmlElement(required = true, nillable = true) protected String billingRank; /** * Gets the value of the firstAmount property. * * @return * possible object is * {@link String } * */ public String getFirstAmount() { return firstAmount; } /** * Sets the value of the firstAmount property. * * @param value * allowed object is * {@link String } * */ public void setFirstAmount(String value) { this.firstAmount = 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 billingCycle property. * * @return * possible object is * {@link String } * */ public String getBillingCycle() { return billingCycle; } /** * Sets the value of the billingCycle property. * * @param value * allowed object is * {@link String } * */ public void setBillingCycle(String value) { this.billingCycle = value; } /** * Gets the value of the billingLeft property. * * @return * possible object is * {@link String } * */ public String getBillingLeft() { return billingLeft; } /** * Sets the value of the billingLeft property. * * @param value * allowed object is * {@link String } * */ public void setBillingLeft(String value) { this.billingLeft = value; } /** * Gets the value of the billingDay property. * * @return * possible object is * {@link String } * */ public String getBillingDay() { return billingDay; } /** * Sets the value of the billingDay property. * * @param value * allowed object is * {@link String } * */ public void setBillingDay(String value) { this.billingDay = value; } /** * Gets the value of the startDate property. * * @return * possible object is * {@link String } * */ public String getStartDate() { return startDate; } /** * Sets the value of the startDate property. * * @param value * allowed object is * {@link String } * */ public void setStartDate(String value) { this.startDate = value; } /** * Gets the value of the endDate property. * * @return * possible object is * {@link String } * */ public String getEndDate() { return endDate; } /** * Sets the value of the endDate property. * * @param value * allowed object is * {@link String } * */ public void setEndDate(String value) { this.endDate = value; } /** * Gets the value of the newAmount property. * * @return * possible object is * {@link String } * */ public String getNewAmount() { return newAmount; } /** * Sets the value of the newAmount property. * * @param value * allowed object is * {@link String } * */ public void setNewAmount(String value) { this.newAmount = value; } /** * Gets the value of the amountModificationDate property. * * @return * possible object is * {@link String } * */ public String getAmountModificationDate() { return amountModificationDate; } /** * Sets the value of the amountModificationDate property. * * @param value * allowed object is * {@link String } * */ public void setAmountModificationDate(String value) { this.amountModificationDate = value; } /** * Gets the value of the billingRank property. * * @return * possible object is * {@link String } * */ public String getBillingRank() { return billingRank; } /** * Sets the value of the billingRank property. * * @param value * allowed object is * {@link String } * */ public void setBillingRank(String value) { this.billingRank = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy