All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.ads.dfp.jaxws.v201602.Money Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

package com.google.api.ads.dfp.jaxws.v201602;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 *             Represents a money amount.
 *           
 * 
 * 

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>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Money", propOrder = { "currencyCode", "microAmount" }) public class Money { protected String currencyCode; protected Long microAmount; /** * Gets the value of the currencyCode property. * * @return * possible object is * {@link String } * */ public String getCurrencyCode() { return currencyCode; } /** * Sets the value of the currencyCode property. * * @param value * allowed object is * {@link String } * */ public void setCurrencyCode(String value) { this.currencyCode = value; } /** * Gets the value of the microAmount property. * * @return * possible object is * {@link Long } * */ public Long getMicroAmount() { return microAmount; } /** * Sets the value of the microAmount property. * * @param value * allowed object is * {@link Long } * */ public void setMicroAmount(Long value) { this.microAmount = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy