Hi,
I'm trying to update the status of the budget to REMOVED, I see that the request goes through but on google nothing happens.
Here is what I'm doing :
CampaignBudget campaignBudget = CampaignBudget.newBuilder()
.setResourceName(budgetResourceName)
.setStatus(BudgetStatusEnum.BudgetStatus.REMOVED)
.build();
FieldMask fieldMask = FieldMask.newBuilder().addPaths("status").build();
CampaignBudgetOperation campaignBudgetOperation = CampaignBudgetOperation.newBuilder()
.setUpdate(campaignBudget)
.setUpdateMask(fieldMask)
.build();
When I mutate this operation it returns the resourceName of the budget successfully but on google I see nothing.
Is there something that I'm doing wrong here?