// Copyright 2015 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package dfp.axis.v201608.proposallineitemservice; import com.google.api.ads.common.lib.auth.OfflineCredentials; import com.google.api.ads.common.lib.auth.OfflineCredentials.Api; import com.google.api.ads.dfp.axis.factory.DfpServices; import com.google.api.ads.dfp.axis.utils.v201608.DateTimes; import com.google.api.ads.dfp.axis.v201608.AdUnitTargeting; import com.google.api.ads.dfp.axis.v201608.BillingCap; import com.google.api.ads.dfp.axis.v201608.BillingSource; import com.google.api.ads.dfp.axis.v201608.CreativeRotationType; import com.google.api.ads.dfp.axis.v201608.DeliveryRateType; import com.google.api.ads.dfp.axis.v201608.Goal; import com.google.api.ads.dfp.axis.v201608.InventoryTargeting; import com.google.api.ads.dfp.axis.v201608.Money; import com.google.api.ads.dfp.axis.v201608.NetworkServiceInterface; import com.google.api.ads.dfp.axis.v201608.ProposalLineItem; import com.google.api.ads.dfp.axis.v201608.ProposalLineItemServiceInterface; import com.google.api.ads.dfp.axis.v201608.RateType; import com.google.api.ads.dfp.axis.v201608.Targeting; import com.google.api.ads.dfp.axis.v201608.UnitType; import com.google.api.ads.dfp.lib.client.DfpSession; import com.google.api.client.auth.oauth2.Credential; import java.util.Random; import org.joda.time.Duration; import org.joda.time.Instant; /** * This example creates a new proposal line item that targets the whole network. * To determine which proposal line items exist, run GetAllProposalLineItems.java. * To determine which proposals exist, run GetAllProposals.java. * * Credentials and properties in {@code fromFile()} are pulled from the * "ads.properties" file. See README for more info. */ public class CreateProposalLineItems { // Set the ID of the proposal that the proposal line items will belong to. private static final String PROPOSAL_ID = "INSERT_PROPOSAL_ID_HERE"; // Set the ID of the product that the proposal line items should be created from. private static final String PRODUCT_ID = "INSERT_PRODUCT_ID_HERE"; // Set the ID of the rate card that the proposal line items should be priced with. // This example requires a rate card with net cost pricing. private static final String RATE_CARD_ID = "INSERT_RATE_CARD_ID_HERE"; public static void runExample(DfpServices dfpServices, DfpSession session, long proposalId, long rateCardId, long productId) throws Exception { // Get the ProposalLineItemService. ProposalLineItemServiceInterface proposalLineItemService = dfpServices.get(session, ProposalLineItemServiceInterface.class); // Get the NetworkService. NetworkServiceInterface networkService = dfpServices.get(session, NetworkServiceInterface.class); // Get the root ad unit ID used to target the whole site. String rootAdUnitId = networkService.getCurrentNetwork().getEffectiveRootAdUnitId(); // Create inventory targeting. InventoryTargeting inventoryTargeting = new InventoryTargeting(); // Create ad unit targeting for the root ad unit (i.e. the whole network). AdUnitTargeting adUnitTargeting = new AdUnitTargeting(); adUnitTargeting.setAdUnitId(rootAdUnitId); adUnitTargeting.setIncludeDescendants(true); inventoryTargeting.setTargetedAdUnits(new AdUnitTargeting[] {adUnitTargeting}); // Create targeting. Targeting targeting = new Targeting(); targeting.setInventoryTargeting(inventoryTargeting); // Create a proposal line item. ProposalLineItem proposalLineItem = new ProposalLineItem(); proposalLineItem.setName("Proposal line item #" + new Random().nextInt(Integer.MAX_VALUE)); proposalLineItem.setProposalId(proposalId); proposalLineItem.setRateCardId(rateCardId); proposalLineItem.setProductId(productId); proposalLineItem.setTargeting(targeting); // Set the length of the proposal line item to run. proposalLineItem.setStartDateTime(DateTimes.toDateTime(Instant.now(), "America/New_York")); proposalLineItem.setEndDateTime( DateTimes.toDateTime(Instant.now().plus(Duration.standardDays(30L)), "America/New_York")); // Set delivery specifications for the proposal line item. proposalLineItem.setDeliveryRateType(DeliveryRateType.EVENLY); proposalLineItem.setCreativeRotationType(CreativeRotationType.OPTIMIZED); // Set billing specifications for the proposal line item. proposalLineItem.setBillingCap(BillingCap.CAPPED_CUMULATIVE); proposalLineItem.setBillingSource(BillingSource.THIRD_PARTY_VOLUME); // Set pricing for the proposal line item for 1000 impressions at a CPM of $2 // for a total value of $2. Goal goal = new Goal(); goal.setUnits(1000L); goal.setUnitType(UnitType.IMPRESSIONS); proposalLineItem.setGoal(goal); proposalLineItem.setNetCost(new Money("USD", 2000000L)); proposalLineItem.setNetRate(new Money("USD", 2000000L)); proposalLineItem.setRateType(RateType.CPM); // Create the proposal line item on the server. ProposalLineItem[] proposalLineItems = proposalLineItemService.createProposalLineItems( new ProposalLineItem[] {proposalLineItem}); for (ProposalLineItem createdProposalLineItem : proposalLineItems) { System.out.printf("A proposal line item with ID %d and name '%s' was created.%n", createdProposalLineItem.getId(), createdProposalLineItem.getName()); } } public static void main(String[] args) throws Exception { // Generate a refreshable OAuth2 credential. Credential oAuth2Credential = new OfflineCredentials.Builder() .forApi(Api.DFP) .fromFile() .build() .generateCredential(); // Construct a DfpSession. DfpSession session = new DfpSession.Builder() .fromFile() .withOAuth2Credential(oAuth2Credential) .build(); DfpServices dfpServices = new DfpServices(); runExample(dfpServices, session, Long.parseLong(PROPOSAL_ID), Long.parseLong(RATE_CARD_ID), Long.parseLong(PRODUCT_ID)); } }