- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
21 lines
562 B
Protocol Buffer
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;
|
|
}
|