From 9d989bbf3b68ddda1593eaf4617ac4cc04b6043f Mon Sep 17 00:00:00 2001 From: Malkov Mikhail Date: Fri, 16 Dec 2022 23:45:09 +0300 Subject: [PATCH] Added a description of the disabledSendingStatisticData option for the nextMillennium adapter (#4197) --- dev-docs/bidders/nextMillennium.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/dev-docs/bidders/nextMillennium.md b/dev-docs/bidders/nextMillennium.md index c7f7361af4..c24853b267 100644 --- a/dev-docs/bidders/nextMillennium.md +++ b/dev-docs/bidders/nextMillennium.md @@ -30,3 +30,18 @@ prebid_member: true Required one of the two parameters placement_id or group_id. Further information for the auction on NextMillennium side is generated automatically. + +### Additional options + +#### disabledSendingStatisticData + +The `disabledSendingStatisticData` parameter disables sending statistics data to the nextMillennium server, such as bidRequested, bidResponse, noBid and bidTimeout events. +An example of enabling this option: +``` +pbjs.setBidderConfig({ + bidders: ['nextMillennium'], + config: { + disabledSendingStatisticData: true, + }, +}) +```