public class

PaymentDetail

extends Object
java.lang.Object
   ↳ org.mule.modules.quickbooks.online.schema.PaymentDetail

Class Overview

Details about a payment received, choosing and detailing a payment method (check,credit card, etc...)

Java class for PaymentDetail complex type.

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

 <complexType name="PaymentDetail">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <choice>
         <element name="Cash" type="{http://www.intuit.com/sb/cdm/v2}CashPayment" minOccurs="0"/>
         <element name="CreditCard" type="{http://www.intuit.com/sb/cdm/v2}CreditCardPayment" minOccurs="0"/>
         <element name="Check" type="{http://www.intuit.com/sb/cdm/v2}CheckPayment" minOccurs="0"/>
       </choice>
     </restriction>
   </complexContent>
 </complexType>
 

Summary

Fields
protected CashPayment cash
protected CheckPayment check
protected CreditCardPayment creditCard
Public Constructors
PaymentDetail()
Public Methods
CashPayment getCash()
Gets the value of the cash property.
CheckPayment getCheck()
Gets the value of the check property.
CreditCardPayment getCreditCard()
Gets the value of the creditCard property.
void setCash(CashPayment value)
Sets the value of the cash property.
void setCheck(CheckPayment value)
Sets the value of the check property.
void setCreditCard(CreditCardPayment value)
Sets the value of the creditCard property.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

protected CashPayment cash

protected CheckPayment check

protected CreditCardPayment creditCard

Public Constructors

public PaymentDetail ()

Public Methods

public CashPayment getCash ()

Gets the value of the cash property.

Returns

public CheckPayment getCheck ()

Gets the value of the check property.

Returns

public CreditCardPayment getCreditCard ()

Gets the value of the creditCard property.

Returns

public void setCash (CashPayment value)

Sets the value of the cash property.

Parameters
value Allowed object is CashPayment

public void setCheck (CheckPayment value)

Sets the value of the check property.

Parameters
value Allowed object is CheckPayment

public void setCreditCard (CreditCardPayment value)

Sets the value of the creditCard property.

Parameters
value Allowed object is CreditCardPayment