Hello,
It was successful using the example class as follows:
$root = $helper->createSubdivision();
$helper->createUnit($root, new ProductOfferId('xxx'), 200000);
$helper->createUnit($root, new ProductOfferId('yyy'), 300000);
$helper->createUnit($root, new ProductOfferId('zzz'), 400000);
$helper->createUnit($root, new ProductOfferId());
// Make the mutate request.
$result = $adGroupCriterionService->mutate($helper->getOperations());
Now I'm looking for references to change or remove these products and bids. Do you have any sample topics? Do I have to delete the whole group and create it again?
Thank you.