net.authorize.api.contract.v1.PaymentDetails Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.11.22 at 06:00:08 PM IST
//
package net.authorize.api.contract.v1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for paymentDetails complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="paymentDetails">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="currency" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="promoCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="misc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="giftWrap" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="discount" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="tax" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="shippingHandling" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="subTotal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="orderID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="amount" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "paymentDetails", propOrder = {
"currency",
"promoCode",
"misc",
"giftWrap",
"discount",
"tax",
"shippingHandling",
"subTotal",
"orderID",
"amount"
})
public class PaymentDetails {
protected String currency;
protected String promoCode;
protected String misc;
protected String giftWrap;
protected String discount;
protected String tax;
protected String shippingHandling;
protected String subTotal;
protected String orderID;
protected String amount;
/**
* 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 promoCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPromoCode() {
return promoCode;
}
/**
* Sets the value of the promoCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPromoCode(String value) {
this.promoCode = value;
}
/**
* Gets the value of the misc property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMisc() {
return misc;
}
/**
* Sets the value of the misc property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMisc(String value) {
this.misc = value;
}
/**
* Gets the value of the giftWrap property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGiftWrap() {
return giftWrap;
}
/**
* Sets the value of the giftWrap property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGiftWrap(String value) {
this.giftWrap = value;
}
/**
* Gets the value of the discount property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDiscount() {
return discount;
}
/**
* Sets the value of the discount property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDiscount(String value) {
this.discount = value;
}
/**
* Gets the value of the tax property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTax() {
return tax;
}
/**
* Sets the value of the tax property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTax(String value) {
this.tax = value;
}
/**
* Gets the value of the shippingHandling property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShippingHandling() {
return shippingHandling;
}
/**
* Sets the value of the shippingHandling property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShippingHandling(String value) {
this.shippingHandling = value;
}
/**
* Gets the value of the subTotal property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSubTotal() {
return subTotal;
}
/**
* Sets the value of the subTotal property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSubTotal(String value) {
this.subTotal = value;
}
/**
* Gets the value of the orderID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrderID() {
return orderID;
}
/**
* Sets the value of the orderID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrderID(String value) {
this.orderID = 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;
}
}