package com.experian.payline.ws.obj; 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 * * * <p>Java class for payment complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <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"/> * <element name="differedActionDate" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "payment", propOrder = { "amount", "currency", "action", "mode", "contractNumber", "differedActionDate" }) public class Payment { @XmlElement(required = true) protected String amount; @XmlElement(required = true) protected String currency; @XmlElement(required = true) protected String action; @XmlElement(required = true) protected String mode; @XmlElement(required = true) protected String contractNumber; @XmlElement(required = true, nillable = true) protected String differedActionDate; /** * 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; } }