Examples of performAudienceSegmentAction()


Examples of com.google.api.ads.dfp.axis.v201308.AudienceSegmentServiceInterface.performAudienceSegmentAction()

      // Create action.
      PopulateAudienceSegments action = new PopulateAudienceSegments();

      // Perform action.
      UpdateResult result = audienceSegmentService.performAudienceSegmentAction(
          action, statementBuilder.toStatement());

      if (result != null && result.getNumChanges() > 0) {
        System.out.printf("Number of audience segments populated: %d\n", result.getNumChanges());
      } else {
View Full Code Here

Examples of com.google.api.ads.dfp.axis.v201311.AudienceSegmentServiceInterface.performAudienceSegmentAction()

      // Create action.
      PopulateAudienceSegments action = new PopulateAudienceSegments();

      // Perform action.
      UpdateResult result = audienceSegmentService.performAudienceSegmentAction(
          action, statementBuilder.toStatement());

      if (result != null && result.getNumChanges() > 0) {
        System.out.printf("Number of audience segments populated: %d\n", result.getNumChanges());
      } else {
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.