.build();
}
public static void runExample(AdWordsServices adWordsServices, AdWordsSession session)
throws Exception {
CustomerServiceInterface customerService =
adWordsServices.get(session, CustomerServiceInterface.class);
Customer customer = customerService.get();
System.out.printf("You are logged in as customer: %s", customer.getCustomerId());
}