$ad_group_id = '123456';
$labels = array('78910');
operations = array();
foreach($labels as $label_id){
$adGroupLabel = new AdGroupLabel();
$adGroupLabel->setAdGroupId($ad_group_id);
$adGroupLabel->setLabelId($label_id);
$operation = new AdGroupLabelOperation();
$operation->setOperand($adGroupLabel);
$operation->setOperator(Operator::ADD);
$operations[] = $operation;
}
$result = $adGroupService->mutate($operations);Unmarshalling Error: cvc-elt.4.3: Type 'ns1:AdGroupLabelOperation' is not validly derived from the type definition, 'AdGroupOperation', of element 'ns1:operations'.
$adGroupService->mutateLabel($operations);