Files
rr3-apk/decompiled/resources/gatewayprotocol/v1/header_bidding_ad_markup.proto
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

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;
}