
com.google.api.ads.dfp.axis.v201605.SuggestedAdUnitServiceInterface Maven / Gradle / Ivy
Show all versions of dfp-axis Show documentation
/**
* SuggestedAdUnitServiceInterface.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.4 Mar 02, 2009 (07:08:06 PST) WSDL2Java emitter.
*/
package com.google.api.ads.dfp.axis.v201605;
public interface SuggestedAdUnitServiceInterface extends java.rmi.Remote {
/**
* Gets a {@link SuggestedAdUnitPage} of {@link SuggestedAdUnit}
* objects that
* satisfy the filter query. There is a system-enforced limit
* of 1000 on the number of suggested
* ad units that are suggested at any one time.
*
*
*
* PQL Property Object Property
*
*
* {@code id}
* {@link SuggestedAdUnit#id}
*
*
* {@code numRequests}
* {@link SuggestedAdUnit#numRequests}
*
*
*
* Note: After API version 201311, the {@code
* id} field will only be
* numerical.
*
*
* @param filterStatement a Publisher Query Language statement used to
* filter
* a set of suggested ad units
*
* @return the suggested ad units that match the given filter
*/
public com.google.api.ads.dfp.axis.v201605.SuggestedAdUnitPage getSuggestedAdUnitsByStatement(com.google.api.ads.dfp.axis.v201605.Statement filterStatement) throws java.rmi.RemoteException, com.google.api.ads.dfp.axis.v201605.ApiException;
/**
* Performs actions on {@link SuggestedAdUnit} objects that match
* the given
* {@link Statement#query}. The following fields are supported
* for filtering:
*
*
*
* PQL Property Object Property
*
*
* {@code id}
* {@link SuggestedAdUnit#id}
*
*
* {@code numRequests}
* {@link SuggestedAdUnit#numRequests}
*
*
*
*
* @param suggestedAdUnitAction the action to perform
*
* @param filterStatement a Publisher Query Language statement used to
* filter
* a set of suggested ad units
*
* @return the result of the action performed
*/
public com.google.api.ads.dfp.axis.v201605.SuggestedAdUnitUpdateResult performSuggestedAdUnitAction(com.google.api.ads.dfp.axis.v201605.SuggestedAdUnitAction suggestedAdUnitAction, com.google.api.ads.dfp.axis.v201605.Statement filterStatement) throws java.rmi.RemoteException, com.google.api.ads.dfp.axis.v201605.ApiException;
}