如何使用新的 API Google mybusiness 信息更新 java 中给定位置的属性

how to Update attributes for a given location in java using new API Google mybusiness information

使用 this link: Method: locations.updateAttributes ,我需要为 google 我的商家信息 API 中的每个位置执行 updateAttributes。 我找不到任何代码示例。有人可以提供一些代码吗? 百万感谢

我知道 AttributesList<Attribute> 可能会混淆。 这应该有帮助:

 public void updateAttributes(String attributePath, List<Attribute> attributes, 
    String attributeMask) {

    UpdateAttributes request = myBusinessBusinessInformation.locations()
        .updateAttributes(attributePath, new Attributes().setAttributes(attributes))
        .setAttributeMask(attributeMask);

       request.execute();
}