Package com.google.api.adwords.lib

Examples of com.google.api.adwords.lib.ReportDate


  protected void setUp() throws Exception {
    super.setUp();
    testUser = new AdWordsUser("test_data/test.properties");


    endDate = new ReportDate().toCalendar().getTime();
    startDate = new ReportDate(
        new ReportDate().getYear(), new ReportDate().getMonth(), 1).toCalendar().getTime();

    methods = CsvUtils.getCsvDataArray("data/ops_rates.csv", true);
  }
View Full Code Here


    reportService = testUser.getService(AdWordsService.V13.REPORT_SERVICE);

    reportJob = new DefinedReportJob();
    reportJob.setSelectedReportType("Structure");
    reportJob.setAggregationTypes(new String[] {"Keyword"});
    reportJob.setStartDay(new ReportDate(2009, 0, 1).toDate());
    reportJob.setEndDay(new ReportDate(2009, 0, 31).toDate());
    reportJob.setName("Demo Structure Keyword Report");
    reportJob.setSelectedColumns(new String[] {
      "Campaign", "CampaignId", "AdGroup", "AdGroupId", "Keyword",
      "KeywordId", "MaximumCPC"});
View Full Code Here

TOP

Related Classes of com.google.api.adwords.lib.ReportDate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.