Package com.google.api.ads.adwords.axis.v201402.o

Examples of com.google.api.ads.adwords.axis.v201402.o.StringAttribute


      AdGroupCriterion criterion;
      if (bidAmount != null && bidAmount > 0) {
        BiddingStrategyConfiguration biddingStrategyConfiguration =
            new BiddingStrategyConfiguration();
       
        Money bidAmountMoney = new Money();
        bidAmountMoney.setMicroAmount(bidAmount);
        CpcBid cpcBid = new CpcBid();
        cpcBid.setBid(bidAmountMoney);
        biddingStrategyConfiguration.setBids(new Bids[] {cpcBid});
        BiddableAdGroupCriterion biddableCriterion = new BiddableAdGroupCriterion();
        biddableCriterion.setBiddingStrategyConfiguration(biddingStrategyConfiguration);
View Full Code Here


    genderBiddableAdGroupCriterion.setCriterion(male);

    // https://developers.google.com/adwords/api/docs/appendix/ages
    AgeRange undetermined = new AgeRange();
    undetermined.setId(503999L);
    NegativeAdGroupCriterion ageRangeNegativeAdGroupCriterion = new NegativeAdGroupCriterion();
    ageRangeNegativeAdGroupCriterion.setAdGroupId(adGroupId);
    ageRangeNegativeAdGroupCriterion.setCriterion(undetermined);

    AdGroupCriterionOperation genderAdGroupCriterionOperation = new AdGroupCriterionOperation();
    genderAdGroupCriterionOperation.setOperand(genderBiddableAdGroupCriterion);
    genderAdGroupCriterionOperation.setOperator(Operator.ADD);
    AdGroupCriterionOperation ageRangeNegativeAdGroupCriterionOperation =
View Full Code Here

        biddingStrategyConfiguration.setBids(new Bids[] {cpcBid});
        BiddableAdGroupCriterion biddableCriterion = new BiddableAdGroupCriterion();
        biddableCriterion.setBiddingStrategyConfiguration(biddingStrategyConfiguration);
        criterion = biddableCriterion;
      } else {
        criterion = new NegativeAdGroupCriterion();
      }
     
      criterion.setAdGroupId(adGroupId);
      criterion.setCriterion(unit);
     
View Full Code Here

    campaign.setBudget(budget);

    campaign.setAdvertisingChannelType(AdvertisingChannelType.SEARCH);
   
    // Set the campaign network options to Search and Search Network.
    NetworkSetting networkSetting = new NetworkSetting();
    networkSetting.setTargetGoogleSearch(true);
    networkSetting.setTargetSearchNetwork(true);
    networkSetting.setTargetContentNetwork(false);
    networkSetting.setTargetPartnerSearchNetwork(false);
    campaign.setNetworkSetting(networkSetting);

    // Set options that are not required.
    GeoTargetTypeSetting geoTarget = new GeoTargetTypeSetting();
    geoTarget.setPositiveGeoTargetType(GeoTargetTypeSettingPositiveGeoTargetType.DONT_CARE);
View Full Code Here

    locationGroupTier3.setMatchingFunction(tier3MatchingFunction);

    LocationGroups locationGroupDowntown = new LocationGroups();
    Function downtownMatchingFunction = new Function();
    downtownMatchingFunction.setLhsOperand(new FunctionArgumentOperand[] {
        new PlacesOfInterestOperand(null, PlacesOfInterestOperandCategory.DOWNTOWN)
    });
    downtownMatchingFunction.setOperator(FunctionOperator.AND);
    downtownMatchingFunction.setRhsOperand(new FunctionArgumentOperand[] {
        new GeoTargetOperand(null, new long[]{ 1015116L }) // Miami, FL
    });
View Full Code Here

     * @param  parent the node that should be this node's parent
     * @param  value the value being partitioned on
     * @return a new subdivision node
     */
    public ProductPartition createSubdivision(ProductPartition parent, ProductDimension value) {
      ProductPartition division = new ProductPartition();
      division.setPartitionType(ProductPartitionType.SUBDIVISION);
     
      division.setId(nextId--);

      // The root node has neither a parent nor a value
      if (parent != null) {
        division.setParentCriterionId(parent.getId());
        division.setCaseValue(value);
      }

      BiddableAdGroupCriterion criterion = new BiddableAdGroupCriterion();
      criterion.setAdGroupId(adGroupId);
      criterion.setCriterion(division);
View Full Code Here

     * @param  bidAmount the amount to bid for matching products, in micros
     * @return a new unit node
     */
    public ProductPartition createUnit(ProductPartition parent, ProductDimension value,
        Long bidAmount) {
      ProductPartition unit = new ProductPartition();
      unit.setPartitionType(ProductPartitionType.UNIT);

      // The root node has neither a parent nor a value
      if (parent != null) {
        unit.setParentCriterionId(parent.getId());
        unit.setCaseValue(value);
      }

      AdGroupCriterion criterion;
      if (bidAmount != null && bidAmount > 0) {
        BiddingStrategyConfiguration biddingStrategyConfiguration =
View Full Code Here

  }

  public static void runExample(
      AdWordsServices adWordsServices, AdWordsSession session) throws Exception {
    // Get the ReportDefinitionService.
    ReportDefinitionServiceInterface reportDefinitionService =
        adWordsServices.get(session, ReportDefinitionServiceInterface.class);

    // Get report fields.
    ReportDefinitionField[] reportDefinitionFields =
        reportDefinitionService
            .getReportFields(ReportDefinitionReportType.KEYWORDS_PERFORMANCE_REPORT);

    // Display report fields.
    System.out.println("Available fields for report:");
View Full Code Here

      throws Exception {
    // Get the LocationCriterionService.
    LocationCriterionServiceInterface locationCriterionService =
        adWordsServices.get(session, LocationCriterionServiceInterface.class);

    Selector selector = new SelectorBuilder()
        .fields(
            "Id",
            "LocationName",
            "CanonicalName",
            "DisplayType",
View Full Code Here

    int offset = 0;

    // Create selector.
    SelectorBuilder builder = new SelectorBuilder();
    Selector selector = builder
        .fields(
            "CampaignId",
            "Id",
            "CriteriaType",
            "PlatformName",
View Full Code Here

TOP

Related Classes of com.google.api.ads.adwords.axis.v201402.o.StringAttribute

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.