Files
rr3-apk/unknown/gatewayprotocol/v1/ad_data_refresh_response.proto
supermegamestre 4bbd74a497 First Upload
Just the APK
Force update disabled, will only work offline.
2026-01-26 00:26:29 -03: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;
}