/** * 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.20 at 04:19:15 PM ART // package com.coupa.transaction; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; 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.datatype.XMLGregorianCalendar; import com.coupa.resources.Resource; /** * <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"> * <all> * <element name="paid" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="payment-date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="payment-notes" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="payments" type="{}payments"/> * </all> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) @XmlRootElement(name = "invoice-payment") public class InvoicePayment extends Resource { protected Boolean paid; @XmlElement(name = "payment-date") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar paymentDate; @XmlElement(name = "payment-notes") protected String paymentNotes; @XmlElement(required = true) protected Payments payments; /** * Gets the value of the paid property. * * @return * possible object is * {@link Boolean } * */ public Boolean isPaid() { return paid; } /** * Sets the value of the paid property. * * @param value * allowed object is * {@link Boolean } * */ public void setPaid(Boolean value) { this.paid = value; } /** * Gets the value of the paymentDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getPaymentDate() { return paymentDate; } /** * Sets the value of the paymentDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setPaymentDate(XMLGregorianCalendar value) { this.paymentDate = value; } /** * Gets the value of the paymentNotes property. * * @return * possible object is * {@link String } * */ public String getPaymentNotes() { return paymentNotes; } /** * Sets the value of the paymentNotes property. * * @param value * allowed object is * {@link String } * */ public void setPaymentNotes(String value) { this.paymentNotes = value; } /** * Gets the value of the payments property. * * @return * possible object is * {@link Payments } * */ public Payments getPayments() { return payments; } /** * Sets the value of the payments property. * * @param value * allowed object is * {@link Payments } * */ public void setPayments(Payments value) { this.payments = value; } }