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 * order * * * <p>Java class for order complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="order"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="ref" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="origin" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="taxes" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="amount" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="date" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="details" type="{http://obj.ws.payline.experian.com}details"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "order", propOrder = { "ref", "origin", "country", "taxes", "amount", "currency", "date", "details" }) public class Order { @XmlElement(required = true) protected String ref; @XmlElement(required = true, nillable = true) protected String origin; @XmlElement(required = true, nillable = true) protected String country; @XmlElement(required = true, nillable = true) protected String taxes; @XmlElement(required = true) protected String amount; @XmlElement(required = true) protected String currency; @XmlElement(required = true) protected String date; @XmlElement(required = true, nillable = true) protected Details details; /** * Gets the value of the ref property. * * @return * possible object is * {@link String } * */ public String getRef() { return ref; } /** * Sets the value of the ref property. * * @param value * allowed object is * {@link String } * */ public void setRef(String value) { this.ref = value; } /** * Gets the value of the origin property. * * @return * possible object is * {@link String } * */ public String getOrigin() { return origin; } /** * Sets the value of the origin property. * * @param value * allowed object is * {@link String } * */ public void setOrigin(String value) { this.origin = value; } /** * Gets the value of the country property. * * @return * possible object is * {@link String } * */ public String getCountry() { return country; } /** * Sets the value of the country property. * * @param value * allowed object is * {@link String } * */ public void setCountry(String value) { this.country = value; } /** * Gets the value of the taxes property. * * @return * possible object is * {@link String } * */ public String getTaxes() { return taxes; } /** * Sets the value of the taxes property. * * @param value * allowed object is * {@link String } * */ public void setTaxes(String value) { this.taxes = 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 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 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 details property. * * @return * possible object is * {@link Details } * */ public Details getDetails() { return details; } /** * Sets the value of the details property. * * @param value * allowed object is * {@link Details } * */ public void setDetails(Details value) { this.details = value; } }