Hi,
I am guided by the usage flow (
https://developers.google.cn/google-ads/api/docs/batch-processing/flow#php) and it works well.
But when I iterate over batch results I cannot access the ad and find out (for example) its id.
$batchJobResult->getMutateOperationResponse()->getResponse() // 'ad_result' (after update operation)
$batchJobResult->getMutateOperationResponse()->getAdResult() // {Google\Ads\GoogleAds\V5\Services\MutateAdResult} [0]
$batchJobResult->getMutateOperationResponse()->getAdResult()->getAd() // always null
$batchJobResult->getMutateOperationResponse()->getAdResult()->getResourceName() // works well, but is this really the only way to get the id?
Help me please :)