creativeGroup.setName(creativeGroupName);
creativeGroup.setGroupNumber(groupNumber);
creativeGroup.setAdvertiserId(advertiserId);
// Save the creative group.
CreativeGroupSaveResult creativeGroupSaveResult = service.saveCreativeGroup(creativeGroup);
// Display the new creative group ID.
System.out.printf("Creative group with ID \"%s\" was created.%n",
creativeGroupSaveResult.getId());
}