
com.google.api.ads.dfp.jaxws.v201605.ExchangeRateServiceInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dfp-appengine Show documentation
Show all versions of dfp-appengine Show documentation
DFP specific AppEngine components.
package com.google.api.ads.dfp.jaxws.v201605;
import java.util.List;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;
/**
*
* Provides methods for adding, updating and retrieving {@link ExchangeRate} objects.
*
*
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.2.9-b130926.1035
* Generated source version: 2.1
*
*/
@WebService(name = "ExchangeRateServiceInterface", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605")
@XmlSeeAlso({
ObjectFactory.class
})
public interface ExchangeRateServiceInterface {
/**
*
* Creates new {@link ExchangeRate} objects.
*
* For each exchange rate, the following fields are required:
*
* - {@link ExchangeRate#currencyCode}
* - {@link ExchangeRate#exchangeRate} when {@link ExchangeRate#refreshRate} is
* {@link ExchangeRateRefreshRate#FIXED}
*
*
* @param exchangeRates the exchange rates to create
* @return the created exchange rates with their exchange rate values filled in
*
*
* @param exchangeRates
* @return
* returns java.util.List
* @throws ApiException_Exception
*/
@WebMethod
@WebResult(name = "rval", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605")
@RequestWrapper(localName = "createExchangeRates", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605", className = "com.google.api.ads.dfp.jaxws.v201605.ExchangeRateServiceInterfacecreateExchangeRates")
@ResponseWrapper(localName = "createExchangeRatesResponse", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605", className = "com.google.api.ads.dfp.jaxws.v201605.ExchangeRateServiceInterfacecreateExchangeRatesResponse")
public List createExchangeRates(
@WebParam(name = "exchangeRates", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605")
List exchangeRates)
throws ApiException_Exception
;
/**
*
* Gets a {@link ExchangeRatePage} of {@link ExchangeRate} objects that satisfy the given
* {@link Statement#query}. The following fields are supported for filtering:
*
*
*
* PQL Property Object Property
*
*
* {@code id}
* {@link ExchangeRate#id}
*
*
* {@code currencyCode}
* {@link ExchangeRate#currencyCode}
*
*
* {@code refreshRate}
* {@link ExchangeRate#refreshRate}
*
*
* {@code direction}
* {@link ExchangeRate#direction}
*
*
* {@code exchangeRate}
* {@link ExchangeRate#exchangeRate}
*
*
*
* @param filterStatement a Publisher Query Language statement used to filter
* a set of exchange rates
* @return the exchange rates that match the given filter
*
*
* @param filterStatement
* @return
* returns com.google.api.ads.dfp.jaxws.v201605.ExchangeRatePage
* @throws ApiException_Exception
*/
@WebMethod
@WebResult(name = "rval", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605")
@RequestWrapper(localName = "getExchangeRatesByStatement", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605", className = "com.google.api.ads.dfp.jaxws.v201605.ExchangeRateServiceInterfacegetExchangeRatesByStatement")
@ResponseWrapper(localName = "getExchangeRatesByStatementResponse", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605", className = "com.google.api.ads.dfp.jaxws.v201605.ExchangeRateServiceInterfacegetExchangeRatesByStatementResponse")
public ExchangeRatePage getExchangeRatesByStatement(
@WebParam(name = "filterStatement", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605")
Statement filterStatement)
throws ApiException_Exception
;
/**
*
* Performs an action on {@link ExchangeRate} objects that satisfy the given
* {@link Statement#query}. The following fields are supported for filtering:
*
*
*
* PQL Property Object Property
*
*
* {@code id}
* {@link ExchangeRate#id}
*
*
* {@code currencyCode}
* {@link ExchangeRate#currencyCode}
*
*
* {@code refreshRate}
* {@link ExchangeRate#refreshRate}
*
*
* {@code direction}
* {@link ExchangeRate#direction}
*
*
* {@code exchangeRate}
* {@link ExchangeRate#exchangeRate}
*
*
*
* @param exchangeRateAction the action to perform
* @param filterStatement a Publisher Query Language statement used to filter
* a set of exchange rates
* @return the result of the action performed
*
*
* @param exchangeRateAction
* @param filterStatement
* @return
* returns com.google.api.ads.dfp.jaxws.v201605.UpdateResult
* @throws ApiException_Exception
*/
@WebMethod
@WebResult(name = "rval", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605")
@RequestWrapper(localName = "performExchangeRateAction", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605", className = "com.google.api.ads.dfp.jaxws.v201605.ExchangeRateServiceInterfaceperformExchangeRateAction")
@ResponseWrapper(localName = "performExchangeRateActionResponse", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605", className = "com.google.api.ads.dfp.jaxws.v201605.ExchangeRateServiceInterfaceperformExchangeRateActionResponse")
public UpdateResult performExchangeRateAction(
@WebParam(name = "exchangeRateAction", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605")
ExchangeRateAction exchangeRateAction,
@WebParam(name = "filterStatement", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605")
Statement filterStatement)
throws ApiException_Exception
;
/**
*
* Updates the specified {@link ExchangeRate} objects.
*
* @param exchangeRates the exchange rates to update
* @return the updated exchange rates
*
*
* @param exchangeRates
* @return
* returns java.util.List
* @throws ApiException_Exception
*/
@WebMethod
@WebResult(name = "rval", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605")
@RequestWrapper(localName = "updateExchangeRates", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605", className = "com.google.api.ads.dfp.jaxws.v201605.ExchangeRateServiceInterfaceupdateExchangeRates")
@ResponseWrapper(localName = "updateExchangeRatesResponse", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605", className = "com.google.api.ads.dfp.jaxws.v201605.ExchangeRateServiceInterfaceupdateExchangeRatesResponse")
public List updateExchangeRates(
@WebParam(name = "exchangeRates", targetNamespace = "https://www.google.com/apis/ads/publisher/v201605")
List exchangeRates)
throws ApiException_Exception
;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy