/** * Mule Coupa Cloud Connector * * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. * * Coupa Connector com.coupa package contains portions of code based on Coupa4j * http://code.google.com/p/coupa4j/, under a MIT license: * http://www.opensource.org/licenses/mit-license.php. */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.01.11 at 10:56:25 AM ART // package com.coupa.transaction; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{}InvoiceDetailHeaderIndicator"/> * <element ref="{}InvoiceDetailLineIndicator"/> * <element ref="{}PaymentTerm"/> * <element ref="{}Extrinsic"/> * </sequence> * <attribute name="invoiceDate" use="required" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" /> * <attribute name="invoiceID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="operation" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" /> * <attribute name="purpose" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "invoiceDetailHeaderIndicator", "invoiceDetailLineIndicator", "paymentTerm", "extrinsic" }) @XmlRootElement(name = "InvoiceDetailRequestHeader") public class InvoiceDetailRequestHeader { @XmlElement(name = "InvoiceDetailHeaderIndicator", required = true) protected InvoiceDetailHeaderIndicator invoiceDetailHeaderIndicator; @XmlElement(name = "InvoiceDetailLineIndicator", required = true) protected InvoiceDetailLineIndicator invoiceDetailLineIndicator; @XmlElement(name = "PaymentTerm", required = true) protected PaymentTerm paymentTerm; @XmlElement(name = "Extrinsic", required = true) protected Extrinsic extrinsic; @XmlAttribute(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String invoiceDate; @XmlAttribute(required = true) protected String invoiceID; @XmlAttribute(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String operation; @XmlAttribute(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String purpose; /** * Gets the value of the invoiceDetailHeaderIndicator property. * * @return * possible object is * {@link InvoiceDetailHeaderIndicator } * */ public InvoiceDetailHeaderIndicator getInvoiceDetailHeaderIndicator() { return invoiceDetailHeaderIndicator; } /** * Sets the value of the invoiceDetailHeaderIndicator property. * * @param value * allowed object is * {@link InvoiceDetailHeaderIndicator } * */ public void setInvoiceDetailHeaderIndicator(InvoiceDetailHeaderIndicator value) { this.invoiceDetailHeaderIndicator = value; } /** * Gets the value of the invoiceDetailLineIndicator property. * * @return * possible object is * {@link InvoiceDetailLineIndicator } * */ public InvoiceDetailLineIndicator getInvoiceDetailLineIndicator() { return invoiceDetailLineIndicator; } /** * Sets the value of the invoiceDetailLineIndicator property. * * @param value * allowed object is * {@link InvoiceDetailLineIndicator } * */ public void setInvoiceDetailLineIndicator(InvoiceDetailLineIndicator value) { this.invoiceDetailLineIndicator = value; } /** * Gets the value of the paymentTerm property. * * @return * possible object is * {@link PaymentTerm } * */ public PaymentTerm getPaymentTerm() { return paymentTerm; } /** * Sets the value of the paymentTerm property. * * @param value * allowed object is * {@link PaymentTerm } * */ public void setPaymentTerm(PaymentTerm value) { this.paymentTerm = value; } /** * Gets the value of the extrinsic property. * * @return * possible object is * {@link Extrinsic } * */ public Extrinsic getExtrinsic() { return extrinsic; } /** * Sets the value of the extrinsic property. * * @param value * allowed object is * {@link Extrinsic } * */ public void setExtrinsic(Extrinsic value) { this.extrinsic = value; } /** * Gets the value of the invoiceDate property. * * @return * possible object is * {@link String } * */ public String getInvoiceDate() { return invoiceDate; } /** * Sets the value of the invoiceDate property. * * @param value * allowed object is * {@link String } * */ public void setInvoiceDate(String value) { this.invoiceDate = value; } /** * Gets the value of the invoiceID property. * * @return * possible object is * {@link String } * */ public String getInvoiceID() { return invoiceID; } /** * Sets the value of the invoiceID property. * * @param value * allowed object is * {@link String } * */ public void setInvoiceID(String value) { this.invoiceID = value; } /** * Gets the value of the operation property. * * @return * possible object is * {@link String } * */ public String getOperation() { return operation; } /** * Sets the value of the operation property. * * @param value * allowed object is * {@link String } * */ public void setOperation(String value) { this.operation = value; } /** * Gets the value of the purpose property. * * @return * possible object is * {@link String } * */ public String getPurpose() { return purpose; } /** * Sets the value of the purpose property. * * @param value * allowed object is * {@link String } * */ public void setPurpose(String value) { this.purpose = value; } }