AdGroupCriterionService 未更改关键字文字

AdGroupCriterionService isn't changing keyword text

我一直在使用这个节点模块:https://www.npmjs.com/package/googleads-node-lib 并且能够使用它更改跟踪模板和 CpcBid 微量,但无法弄清楚为什么它不更改关键字文本。相关代码如下:

var budget = new service.Model(attributes);

// Change Keyword text (doesn't work)
budget.attributes.criterion.text = 'superawesomekeyword';

// Also tried this line below but it doesn't work either.
budget.set('criterion', {'attributes': {'xsi:type': 'Keyword'},
                                        'id': 175369767649,
                                        'type': 'KEYWORD',
                                        'Criterion.Type': 'Keyword',
                                        'text': 'superawesomekeyword', 
                                        'matchType': 'EXACT'})    

// Change CPC Bid <---- This works
budget.attributes.biddingStrategyConfiguration.bids[0].bid.microAmount = 80000000;

// Change Tracking Template URL <---- This also works
budget.set('trackingUrlTemplate', 'http://test.com');

service.mutateSet(process.env.GOOGLE_CLIENT_CUSTOMER_ID, budget, function(err, results) {
     if (err) {
         console.log(err);
     }

     else { 
          console.log(JSON.stringify(results, null, 2));
     }
}

控制台输出显示跟踪模板和微量已更改,但关键字文本未更改。 Console Output

创建新关键字而不是尝试更改它,如果关键字创建成功则删除旧关键字。