-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Core: Remove Empty EIDs + add new ortb fields (#3465)
- Loading branch information
1 parent
075bdf8
commit ecd509d
Showing
25 changed files
with
357 additions
and
222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,24 @@ | ||
package com.iab.openrtb.request; | ||
|
||
import com.fasterxml.jackson.databind.node.ObjectNode; | ||
import lombok.Builder; | ||
import lombok.Value; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* Extended identifiers support in the OpenRTB specification allows buyers | ||
* to use audience data in real-time bidding. This object can contain one | ||
* or more {@link Uid}s from a single source or a technology provider. The | ||
* exchange should ensure that business agreements allow for the sending | ||
* of this data. | ||
*/ | ||
@Value(staticConstructor = "of") | ||
@Value | ||
@Builder(toBuilder = true) | ||
public class Eid { | ||
|
||
/** | ||
* Source or technology provider responsible for the set of included IDs. Expressed as a top-level domain. | ||
*/ | ||
String source; | ||
|
||
/** | ||
* Array of extended ID {@link Uid} objects from the given source. | ||
* Refer to 3.2.28 Extended Identifier UIDs | ||
*/ | ||
List<Uid> uids; | ||
|
||
/** | ||
* Placeholder for vendor specific extensions to this object | ||
*/ | ||
String inserter; | ||
|
||
String matcher; | ||
|
||
Integer mm; | ||
|
||
ObjectNode ext; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.