Hi,
I'm trying to modify UniversalApp Campaign include with biddingStrategy data.
But I couldn't edit 'ConversionTypeIds' exactly what I want to modify.
It seems to be applied by overlapping with the existing 'ConversionTypeIds'.
Do I have to 'ADD' 'ConversionTypeIds' after remove existing 'ConversionTypeIds' ?
I wrote my codes at the bottom of this letter,
And I would thank you If you give me any feed back about this issue.
*************************************************************************************
if(!empty($rows->conversionTypeIds) && count($rows->conversionTypeIds) > 0){
for($i=0; $i<count($rows->conversionTypeIds); $i++){
$conversionIds[$i] = $rows->conversionTypeIds[$i];
}
$selectiveOptimization = new SelectiveOptimization();
$selectiveOptimization->setConversionTypeIds($conversionIds);
$campaign->setSelectiveOptimization($selectiveOptimization);
}
*************************************************************************************