Updated DataExtension API Builders (markdown)

Risto Lahtela 2021-04-07 20:04:19 +03:00
parent ecfe12fd40
commit 5692219b5d
1 changed files with 1 additions and 1 deletions

@ -68,7 +68,7 @@ public ExtensionDataBuilder lotsOfServerData() {
if (database == null) throw new NotReadyException();
return database.getHouseCount();
})
).addValue(Long.class builder.valueBuilder("Superheroes")
).addValue(Long.class, builder.valueBuilder("Superheroes")
.buildNumber(this::getSuperheroCount)
);
```