// Copyright 2016 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. /** * ReconciliationReportRowServiceInterface.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.v201608; public interface ReconciliationReportRowServiceInterface extends java.rmi.Remote { /** * Gets a {@link ReconciliationReportRowPage} of {@link ReconciliationReportRow} * objects that * satisfy the given {@link Statement#query}. The following fields * are supported for filtering: * * <table> * <tr> * <th scope="col">PQL Property</th> <th scope="col">Object Property</th> * </tr> * <tr> * <td>{@code reconciliationReportId}</td> * <td>{@link ReconciliationReportRow#reconciliationReportId}</td> * </tr> * <tr> * <td>{@code advertiserId}</td> * <td>{@link ReconciliationReportRow#advertiserId}</td> * </tr> * <tr> * <td>{@code orderId}</td> * <td>{@link ReconciliationReportRow#orderId}</td> * </tr> * <tr> * <td>{@code lineItemId}</td> * <td>{@link ReconciliationReportRow#lineItemId}</td> * </tr> * <tr> * <td>{@code proposalLineItemId}</td> * <td>{@link ReconciliationReportRow#proposalLineItemId}</td> * </tr> * <tr> * <td>{@code creativeId}</td> * <td>{@link ReconciliationReportRow#creativeId}</td> * </tr> * <tr> * <td>{@code lineItemCostType}</td> * <td>{@link ReconciliationReportRow#lineItemCostType}</td> * </tr> * <tr> * <td>{@code dfpClicks}</td> * <td>{@link ReconciliationReportRow#dfpClicks}</td> * </tr> * <tr> * <td>{@code dfpImpressions}</td> * <td>{@link ReconciliationReportRow#dfpImpressions}</td> * </tr> * <tr> * <td>{@code dfpLineItemDays}</td> * <td>{@link ReconciliationReportRow#dfpLineItemDays}</td> * </tr> * <tr> * <td>{@code thirdPartyClicks}</td> * <td>{@link ReconciliationReportRow#thirdPartyClicks}</td> * </tr> * <tr> * <td>{@code thirdPartyImpressions}</td> * <td>{@link ReconciliationReportRow#thirdPartyImpressions}</td> * </tr> * <tr> * <td>{@code thirdPartyLineItemDays}</td> * <td>{@link ReconciliationReportRow#thirdPartyLineItemDays}</td> * </tr> * <tr> * <td>{@code manualClicks}</td> * <td>{@link ReconciliationReportRow#manualClicks}</td> * </tr> * <tr> * <td>{@code manualImpressions}</td> * <td>{@link ReconciliationReportRow#manualImpressions}</td> * </tr> * <tr> * <td>{@code manualLineItemDays}</td> * <td>{@link ReconciliationReportRow#manualLineItemDays}</td> * </tr> * <tr> * <td>{@code reconciledClicks}</td> * <td>{@link ReconciliationReportRow#reconciledClicks}</td> * </tr> * <tr> * <td>{@code reconciledImpressions}</td> * <td>{@link ReconciliationReportRow#reconciledImpressions}</td> * </tr> * <tr> * <td>{@code reconciledLineItemDays}</td> * <td>{@link ReconciliationReportRow#reconciledLineItemDays}</td> * </tr> * </table> * * The {@code reconciliationReportId} field is required and can * only be combined with an * {@code AND} to other conditions. Furthermore, the results * may only belong to * one {@link ReconciliationReport}. * * * @param filterStatement a Publisher Query Language statement used to * filter a set of reconciliation report rows * * @return the reconciliation report rows that match the given filter */ public com.google.api.ads.dfp.axis.v201608.ReconciliationReportRowPage getReconciliationReportRowsByStatement(com.google.api.ads.dfp.axis.v201608.Statement filterStatement) throws java.rmi.RemoteException, com.google.api.ads.dfp.axis.v201608.ApiException; /** * Updates a list of {@link ReconciliationReportRow} which belong * to same * {@link ReconciliationReport}. * * * @param reconciliationReportRows a list of reconciliation report rows * to update * * @return the updated reconciliation report rows */ public com.google.api.ads.dfp.axis.v201608.ReconciliationReportRow[] updateReconciliationReportRows(com.google.api.ads.dfp.axis.v201608.ReconciliationReportRow[] reconciliationReportRows) throws java.rmi.RemoteException, com.google.api.ads.dfp.axis.v201608.ApiException; }