Files
rr3-apk/decompiled/resources/gatewayprotocol/v1/ad_data_refresh_response.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

21 lines
562 B
Protocol Buffer

syntax = "proto3";
package gatewayprotocol.v1;
import "gatewayprotocol/v1/error.proto";
option swift_prefix = "Gateway";
message AdDataRefreshResponse {
// non empty if fill otherwise empty
bytes ad_data = 1;
// version of the ad markup. Use to determine which parser to use.
int32 ad_data_version = 2;
// non empty if fill otherwise empty
bytes tracking_token = 3;
// Ad Data Refresh Token to be used to refresh ad markup
bytes ad_data_refresh_token = 4;
// If set, there was an error processing the request.
optional Error error = 5;
}