public class Money extends Object
Java class for Money complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Money">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="currencyCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
<element name="microAmount" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected String |
currencyCode |
protected Long |
microAmount |
| Constructor and Description |
|---|
Money() |
| Modifier and Type | Method and Description |
|---|---|
String |
getCurrencyCode()
Gets the value of the currencyCode property.
|
Long |
getMicroAmount()
Gets the value of the microAmount property.
|
void |
setCurrencyCode(String value)
Sets the value of the currencyCode property.
|
void |
setMicroAmount(Long value)
Sets the value of the microAmount property.
|
public String getCurrencyCode()
Stringpublic void setCurrencyCode(String value)
value - allowed object is
Stringpublic Long getMicroAmount()
LongCopyright © 2018. All Rights Reserved.