-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IX: Bidder response enriched with FledgeAuctionConfig (#2807)
- Loading branch information
1 parent
826dd5f
commit a2c3f6f
Showing
4 changed files
with
245 additions
and
125 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
26 changes: 26 additions & 0 deletions
26
src/main/java/org/prebid/server/bidder/ix/model/response/IxBidResponse.java
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package org.prebid.server.bidder.ix.model.response; | ||
|
||
import com.iab.openrtb.response.SeatBid; | ||
import lombok.Builder; | ||
import lombok.Value; | ||
|
||
import java.util.List; | ||
|
||
@Builder(toBuilder = true) | ||
@Value | ||
public class IxBidResponse { | ||
|
||
String id; | ||
|
||
List<SeatBid> seatbid; | ||
|
||
String bidid; | ||
|
||
String cur; | ||
|
||
String customdata; | ||
|
||
Integer nbr; | ||
|
||
IxExtBidResponse ext; | ||
} |
15 changes: 15 additions & 0 deletions
15
src/main/java/org/prebid/server/bidder/ix/model/response/IxExtBidResponse.java
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package org.prebid.server.bidder.ix.model.response; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.databind.node.ObjectNode; | ||
import lombok.Value; | ||
|
||
import java.util.Map; | ||
|
||
@Value(staticConstructor = "of") | ||
public class IxExtBidResponse { | ||
|
||
@JsonProperty("fledge_auction_configs") | ||
Map<String, ObjectNode> fledgeAuctionConfigs; | ||
|
||
} |
Oops, something went wrong.