-
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
1 parent
6a8129a
commit a98282b
Showing
5 changed files
with
81 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package com.iab.openrtb.request; | ||
|
||
import com.fasterxml.jackson.databind.node.ObjectNode; | ||
import lombok.Builder; | ||
import lombok.Value; | ||
|
||
import java.math.BigDecimal; | ||
|
||
/** | ||
* This object allows sellers to specify price floors for video and audio creatives, whose price varies based on time. | ||
*/ | ||
@Value | ||
@Builder | ||
public class DurFloor { | ||
|
||
/** | ||
* An integer indicating the low end of a duration range. | ||
* If this value is missing, the low end is unbounded. Either mindur or maxdur is required, but not both. | ||
*/ | ||
Integer mindur; | ||
|
||
/** | ||
* An integer indicating the high end of a duration range. | ||
* If this value is missing, the high end is unbounded. Either mindur or maxdur is required, but not both. | ||
*/ | ||
Integer maxdur; | ||
|
||
/** | ||
* Minimum bid for a given impression opportunity, | ||
* if bidding with a creative in this duration range, expressed in CPM. | ||
* For any creatives whose durations are outside of the defined min/max, | ||
* the `bidfloor` at the `Imp` level will serve as the default floor. | ||
*/ | ||
BigDecimal bidfloor; | ||
|
||
/** | ||
* Placeholder for vendor specific extensions to this object | ||
*/ | ||
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