Examples of TargetingGroupCriterionReturnValue


Examples of com.google.api.ads.adwords.axis.v201402.video.TargetingGroupCriterionReturnValue

    TargetingGroupCriterionOperation addUserInterestCriteriaOp =
        new TargetingGroupCriterionOperation();
    addUserInterestCriteriaOp.setOperand(interestCriterion);
    addUserInterestCriteriaOp.setOperator(Operator.ADD);

    TargetingGroupCriterionReturnValue result = videoTargetingGroupCriterionService.mutate(
        new TargetingGroupCriterionOperation[] {
          addAgeCriterionOp, addGenderCriterionOp,
          addNegativeAgeCriterionOp, addTopicCriterionOp,
          addUserInterestCriteriaOp});
   
    for (TargetingGroupCriterion targetingGroupCriterionResult : result.getValue()) {
      System.out.printf("Targeting group criterion with campaign id %d, "
          + "targeting group id %d, criterion id %d, "
          + "and type '%s' was added.%n",
          targetingGroupCriterionResult.getCampaignId(),
          targetingGroupCriterionResult.getTargetingGroupId(),
View Full Code Here

Examples of com.google.api.ads.adwords.axis.v201406.video.TargetingGroupCriterionReturnValue

    TargetingGroupCriterionOperation addUserInterestCriteriaOp =
        new TargetingGroupCriterionOperation();
    addUserInterestCriteriaOp.setOperand(interestCriterion);
    addUserInterestCriteriaOp.setOperator(Operator.ADD);

    TargetingGroupCriterionReturnValue result = videoTargetingGroupCriterionService.mutate(
        new TargetingGroupCriterionOperation[] {
          addAgeCriterionOp, addGenderCriterionOp,
          addNegativeAgeCriterionOp, addTopicCriterionOp,
          addUserInterestCriteriaOp});
   
    for (TargetingGroupCriterion targetingGroupCriterionResult : result.getValue()) {
      System.out.printf("Targeting group criterion with campaign id %d, "
          + "targeting group id %d, criterion id %d, "
          + "and type '%s' was added.%n",
          targetingGroupCriterionResult.getCampaignId(),
          targetingGroupCriterionResult.getTargetingGroupId(),
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.