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

Examples of com.google.api.ads.adwords.axis.v201402.express.ExpressBusinessServiceInterface.mutate()


    VideoAdOperation operation = new VideoAdOperation();
    operation.setOperand(ad);
    operation.setOperator(Operator.SET);

    VideoAdReturnValue result = videoAdService.mutate(new VideoAdOperation[] {operation});
   
    for (VideoAd videoAdResult : result.getValue()) {
      System.out.printf("Video ad with id %d was updated.%n",
          videoAdResult.getId());
    }
View Full Code Here


    VideoCampaignCriterionOperation operation =
        new VideoCampaignCriterionOperation();
    operation.setOperand(criterion);
    operation.setOperator(Operator.ADD);
   
    VideoCampaignCriterionReturnValue result = videoCampaignCriterionService.mutate(
        new VideoCampaignCriterionOperation[] {operation});
   
    for (VideoCampaignCriterion videoCampaignCriterionResult : result.getValue()) {
      System.out.printf("Video campaign criterion with campaign id %d, "
          + "criterion id %d, and type '%s' was added.%n",
View Full Code Here

    operation.setOperator(Operator.ADD);
   
    VideoCampaignOperation[] operations = new VideoCampaignOperation[] {operation};

    // Add video campaigns.
    VideoCampaignReturnValue result = videoCampaignService.mutate(operations);

    // Display video campaigns.
    for (VideoCampaign videoCampaignResult : result.getValue()) {
      System.out.printf("Campaign with name '%s' and id %d was added.%n",
          videoCampaignResult.getName(),
View Full Code Here

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

    TargetingGroupCriterionReturnValue result = videoTargetingGroupCriterionService.mutate(
        new TargetingGroupCriterionOperation[] {
          addAgeCriterionOp, addGenderCriterionOp,
          addNegativeAgeCriterionOp, addTopicCriterionOp,
          addUserInterestCriteriaOp});
   
View Full Code Here

    TargetingGroupOperation operation = new TargetingGroupOperation();
    operation.setOperator(Operator.SET);
    operation.setOperand(targetingGroup);

    TargetingGroupReturnValue result =
        videoTargetingGroupService.mutate(new TargetingGroupOperation[] {operation});
   
    for (TargetingGroup targetingGroupResult : result.getValue()) {
      System.out.printf("Targeting group with campaign id %d, "
          + "and targeting group id %d was updated.%n",
          targetingGroupResult.getCampaignId(),
View Full Code Here

    TargetingGroupOperation operation = new TargetingGroupOperation();
    operation.setOperand(targetingGroup);
    operation.setOperator(Operator.ADD);

    TargetingGroupReturnValue result =
        videoTargetingGroupService.mutate(new TargetingGroupOperation[] {operation});

    for (TargetingGroup targetingGroupResult : result.getValue()) {
      System.out.printf("Targeting group with campaign id %d,"
          + " and targeting group id %d was added.%n",
          targetingGroupResult.getCampaignId(), targetingGroupResult.getId());
View Full Code Here

    business2.setName("Express Interplanetary Cruise #" + System.currentTimeMillis());
    business2.setAddress(
        new Address("1600 Amphitheatre Pkwy", null, "Mountain View", "CA", null, null, "US"));
    business2.setWebsite("http://www.example.com/cruise2");

    ExpressBusiness[] addedBusinesses = businessService.mutate(new ExpressBusinessOperation[] {
        new ExpressBusinessOperation(Operator.ADD, null, business1),
        new ExpressBusinessOperation(Operator.ADD, null, business2)});

    System.out.printf("Added %d express businesses%n", addedBusinesses.length);
    for (ExpressBusiness addedBusiness : addedBusinesses) {
View Full Code Here

    business.setWebsite("http://www.example.com/?myParam=" + System.currentTimeMillis());
   
    ExpressBusinessOperation operation = new ExpressBusinessOperation(Operator.SET, "", business);

    ExpressBusiness[] mutatedBusinesses =
        businessService.mutate(new ExpressBusinessOperation[] {operation});

    ExpressBusiness mutatedBusiness = mutatedBusinesses[0];

    System.out.printf("Express business with ID %d and name '%s' was updated%n",
        mutatedBusiness.getId(), mutatedBusiness.getName());
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.