mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-10 03:04:47 -05:00
13 lines
345 B
Protocol Buffer
Vendored
13 lines
345 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
message DownloadRemoteConfigVersionResponse {
|
|
.POGOProtos.Networking.Responses.DownloadRemoteConfigVersionResponse.Result result = 1;
|
|
uint64 item_templates_timestamp_ms = 2; // Latest available?
|
|
uint64 asset_digest_timestamp_ms = 3;
|
|
|
|
enum Result {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
}
|
|
} |