Skip to content

Commit

Permalink
Add GVL ID for pairId userId submodule. (prebid#10053)
Browse files Browse the repository at this point in the history
  • Loading branch information
congdu-kun authored and Michele Nasti committed Aug 25, 2023
1 parent 7cfcce3 commit 4935578
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions modules/pairIdSystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,16 @@ export const pairIdSubmodule = {
*/
name: MODULE_NAME,
/**
* decode the stored id value for passing to bid requests
* @function
* @param { string | undefined } value
* @returns {{pairId:string} | undefined }
*/
* used to specify vendor id
* @type {number}
*/
gvlid: 755,
/**
* decode the stored id value for passing to bid requests
* @function
* @param { string | undefined } value
* @returns {{pairId:string} | undefined }
*/
decode(value) {
return value && Array.isArray(value) ? { 'pairId': value } : undefined
},
Expand Down

0 comments on commit 4935578

Please sign in to comment.