-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
William Harris
committed
Feb 23, 2024
1 parent
7672f9e
commit cc0cca6
Showing
4 changed files
with
265 additions
and
3 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
23 changes: 23 additions & 0 deletions
23
...main/java/org/prebid/server/bidder/yieldlab/model/YieldlabDigitalServicesActResponse.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,23 @@ | ||
package org.prebid.server.bidder.yieldlab.model; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Value; | ||
|
||
import java.util.List; | ||
|
||
@AllArgsConstructor(staticName = "of") | ||
@Value | ||
public class YieldlabDigitalServicesActResponse { | ||
|
||
String behalf; | ||
String paid; | ||
Integer adrender; | ||
List<Transparency> transparency; | ||
|
||
@AllArgsConstructor(staticName = "of") | ||
@Value | ||
public static class Transparency { | ||
String domain; | ||
List<Integer> dsaparams; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -22,4 +22,6 @@ public class YieldlabResponse { | |
Integer did; | ||
|
||
String pvid; | ||
|
||
YieldlabDigitalServicesActResponse dsa; | ||
} |
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