use of com.google.api.ads.admanager.axis.v202108.Proposal in project googleads-java-lib by googleads.
the class CreateProposals method runExample.
/**
* Runs the example.
*
* @param adManagerServices the services factory.
* @param session the session.
* @param primarySalespersonId the ID of the primary salesperson.
* @param primaryTraffickerId the ID of the primary trafficker.
* @param programmaticBuyerId the ID of the programmatic buyer. This can be obtained through the
* Programmatic_Buyer PQL table.
* @throws ApiException if the API request failed with one or more service errors.
* @throws RemoteException if the API request failed due to other errors.
*/
public static void runExample(AdManagerServices adManagerServices, AdManagerSession session, long primarySalespersonId, long primaryTraffickerId, long programmaticBuyerId) throws RemoteException {
ProposalServiceInterface proposalService = adManagerServices.get(session, ProposalServiceInterface.class);
Proposal proposal = new Proposal();
// Setting required Marketplace information.
ProposalMarketplaceInfo proposalMarketplaceInfo = new ProposalMarketplaceInfo();
proposalMarketplaceInfo.setBuyerAccountId(programmaticBuyerId);
// Set common required fields for a proposal.
proposal.setName("Proposal #" + new Random().nextInt(Integer.MAX_VALUE));
proposal.setPrimaryTraffickerId(primaryTraffickerId);
proposal.setMarketplaceInfo(proposalMarketplaceInfo);
SalespersonSplit primarySalesperson = new SalespersonSplit();
primarySalesperson.setUserId(primarySalespersonId);
primarySalesperson.setSplit(100000);
proposal.setPrimarySalesperson(primarySalesperson);
// Create the proposal on the server.
Proposal[] proposals = proposalService.createProposals(new Proposal[] { proposal });
for (Proposal createdProposal : proposals) {
System.out.printf("A proposal with ID %d and name '%s' " + "was created.%n", createdProposal.getId(), createdProposal.getName());
}
}
Aggregations