public class

Payment

extends Object
java.lang.Object
   ↳ com.coupa.transaction.Payment

Class Overview

Java class for payment complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="payment">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <all>
         <element name="amount-paid" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
         <element name="notes" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="payment-date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
       </all>
     </restriction>
   </complexContent>
 </complexType>
 

Summary

Fields
protected BigDecimal amountPaid
protected String notes
protected XMLGregorianCalendar paymentDate
Public Constructors
Payment()
Public Methods
BigDecimal getAmountPaid()
Gets the value of the amountPaid property.
String getNotes()
Gets the value of the notes property.
XMLGregorianCalendar getPaymentDate()
Gets the value of the paymentDate property.
void setAmountPaid(BigDecimal value)
Sets the value of the amountPaid property.
void setNotes(String value)
Sets the value of the notes property.
void setPaymentDate(XMLGregorianCalendar value)
Sets the value of the paymentDate property.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

protected BigDecimal amountPaid

protected String notes

protected XMLGregorianCalendar paymentDate

Public Constructors

public Payment ()

Public Methods

public BigDecimal getAmountPaid ()

Gets the value of the amountPaid property.

Returns
  • possible object is BigDecimal

public String getNotes ()

Gets the value of the notes property.

Returns
  • possible object is String

public XMLGregorianCalendar getPaymentDate ()

Gets the value of the paymentDate property.

Returns
  • possible object is XMLGregorianCalendar

public void setAmountPaid (BigDecimal value)

Sets the value of the amountPaid property.

Parameters
value Allowed object is BigDecimal

public void setNotes (String value)

Sets the value of the notes property.

Parameters
value Allowed object is String

public void setPaymentDate (XMLGregorianCalendar value)

Sets the value of the paymentDate property.

Parameters
value Allowed object is XMLGregorianCalendar