- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
19 lines
573 B
Protocol Buffer
19 lines
573 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package gatewayprotocol.v1;
|
|
|
|
option swift_prefix = "Gateway";
|
|
|
|
// Ad Markup used in a header bidding integration
|
|
message HeaderBiddingAdMarkup {
|
|
// A blob of data which contains an ad to show.
|
|
// This blob should be provided to Ad Player to parse and cache the ad.
|
|
// Currently it is a Auction V6 response.
|
|
bytes ad_data = 1;
|
|
// A version of the ad data. Can be used to determine which parser to use.
|
|
int32 ad_data_version = 2;
|
|
|
|
// Configuration Token which can be used to fetch Ad Player Configuration.
|
|
bytes configuration_token = 3;
|
|
}
|