Package com.google.api.ads.dfp.axis.v201211

Examples of com.google.api.ads.dfp.axis.v201211.CreativeWrapper


          user.getService(DfpService.V201302.CREATIVE_WRAPPER_SERVICE);

      Long creativeWrapperId = Long.parseLong("INSERT_CREATIVE_WRAPPER_LABEL_ID_HERE");

      // Get the creative wrapper.
      CreativeWrapper creativeWrapper1 =
          creativeWrapperService.getCreativeWrapper(creativeWrapperId);

      creativeWrapper1.setOrdering(CreativeWrapperOrdering.OUTER);

      // Update the creative wrappers on the server.
      CreativeWrapper[] creativeWrappers =
          creativeWrapperService.updateCreativeWrappers(new CreativeWrapper[] {creativeWrapper1});
View Full Code Here


          user.getService(DfpService.V201302.CREATIVE_WRAPPER_SERVICE);

      Long labelId = Long.parseLong("INSERT_CREATIVE_WRAPPER_LABEL_ID_HERE");
     
      // Create a creative wrapper.
      CreativeWrapper creativeWrapper1 = new CreativeWrapper();
      // A label can only be associated with one creative wrapper.
      creativeWrapper1.setLabelId(labelId);
      creativeWrapper1.setOrdering(CreativeWrapperOrdering.INNER);
      creativeWrapper1.setHeader(
          new CreativeWrapperHtmlSnippet("<b>My creative wrapper header</b>"));
      creativeWrapper1.setFooter(
          new CreativeWrapperHtmlSnippet("<b>My creative wrapper footer</b>"));

      // Create the creative wrappers on the server.
      CreativeWrapper[] creativeWrappers =
          creativeWrapperService.createCreativeWrappers(new CreativeWrapper[] {creativeWrapper1});
View Full Code Here

          user.getService(DfpService.V201306.CREATIVE_WRAPPER_SERVICE);

      Long labelId = Long.parseLong("INSERT_CREATIVE_WRAPPER_LABEL_ID_HERE");
     
      // Create a creative wrapper.
      CreativeWrapper creativeWrapper1 = new CreativeWrapper();
      // A label can only be associated with one creative wrapper.
      creativeWrapper1.setLabelId(labelId);
      creativeWrapper1.setOrdering(CreativeWrapperOrdering.INNER);
      creativeWrapper1.setHeader(
          new CreativeWrapperHtmlSnippet("<b>My creative wrapper header</b>"));
      creativeWrapper1.setFooter(
          new CreativeWrapperHtmlSnippet("<b>My creative wrapper footer</b>"));

      // Create the creative wrappers on the server.
      CreativeWrapper[] creativeWrappers =
          creativeWrapperService.createCreativeWrappers(new CreativeWrapper[] {creativeWrapper1});
View Full Code Here

          user.getService(DfpService.V201306.CREATIVE_WRAPPER_SERVICE);

      Long creativeWrapperId = Long.parseLong("INSERT_CREATIVE_WRAPPER_LABEL_ID_HERE");

      // Get the creative wrapper.
      CreativeWrapper creativeWrapper1 =
          creativeWrapperService.getCreativeWrapper(creativeWrapperId);

      creativeWrapper1.setOrdering(CreativeWrapperOrdering.OUTER);

      // Update the creative wrappers on the server.
      CreativeWrapper[] creativeWrappers =
          creativeWrapperService.updateCreativeWrappers(new CreativeWrapper[] {creativeWrapper1});
View Full Code Here

          user.getService(DfpService.V201308.CREATIVE_WRAPPER_SERVICE);

      Long labelId = Long.parseLong("INSERT_CREATIVE_WRAPPER_LABEL_ID_HERE");
     
      // Create a creative wrapper.
      CreativeWrapper creativeWrapper1 = new CreativeWrapper();
      // A label can only be associated with one creative wrapper.
      creativeWrapper1.setLabelId(labelId);
      creativeWrapper1.setOrdering(CreativeWrapperOrdering.INNER);
      creativeWrapper1.setHeader(
          new CreativeWrapperHtmlSnippet("<b>My creative wrapper header</b>"));
      creativeWrapper1.setFooter(
          new CreativeWrapperHtmlSnippet("<b>My creative wrapper footer</b>"));

      // Create the creative wrappers on the server.
      CreativeWrapper[] creativeWrappers =
          creativeWrapperService.createCreativeWrappers(new CreativeWrapper[] {creativeWrapper1});
View Full Code Here

          user.getService(DfpService.V201308.CREATIVE_WRAPPER_SERVICE);

      Long creativeWrapperId = Long.parseLong("INSERT_CREATIVE_WRAPPER_LABEL_ID_HERE");

      // Get the creative wrapper.
      CreativeWrapper creativeWrapper1 =
          creativeWrapperService.getCreativeWrapper(creativeWrapperId);

      creativeWrapper1.setOrdering(CreativeWrapperOrdering.OUTER);

      // Update the creative wrappers on the server.
      CreativeWrapper[] creativeWrappers =
          creativeWrapperService.updateCreativeWrappers(new CreativeWrapper[] {creativeWrapper1});
View Full Code Here

          user.getService(DfpService.V201311.CREATIVE_WRAPPER_SERVICE);

      Long labelId = Long.parseLong("INSERT_CREATIVE_WRAPPER_LABEL_ID_HERE");
     
      // Create a creative wrapper.
      CreativeWrapper creativeWrapper1 = new CreativeWrapper();
      // A label can only be associated with one creative wrapper.
      creativeWrapper1.setLabelId(labelId);
      creativeWrapper1.setOrdering(CreativeWrapperOrdering.INNER);
      creativeWrapper1.setHeader(
          new CreativeWrapperHtmlSnippet("<b>My creative wrapper header</b>"));
      creativeWrapper1.setFooter(
          new CreativeWrapperHtmlSnippet("<b>My creative wrapper footer</b>"));

      // Create the creative wrappers on the server.
      CreativeWrapper[] creativeWrappers =
          creativeWrapperService.createCreativeWrappers(new CreativeWrapper[] {creativeWrapper1});
View Full Code Here

          user.getService(DfpService.V201311.CREATIVE_WRAPPER_SERVICE);

      Long creativeWrapperId = Long.parseLong("INSERT_CREATIVE_WRAPPER_LABEL_ID_HERE");

      // Get the creative wrapper.
      CreativeWrapper creativeWrapper1 =
          creativeWrapperService.getCreativeWrapper(creativeWrapperId);

      creativeWrapper1.setOrdering(CreativeWrapperOrdering.OUTER);

      // Update the creative wrappers on the server.
      CreativeWrapper[] creativeWrappers =
          creativeWrapperService.updateCreativeWrappers(new CreativeWrapper[] {creativeWrapper1});
View Full Code Here

TOP

Related Classes of com.google.api.ads.dfp.axis.v201211.CreativeWrapper

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.