mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-15 22:25:50 -05:00
16 lines
342 B
Protocol Buffer
Vendored
16 lines
342 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Data/PlayerBadge.proto";
|
|
|
|
message GetPlayerProfileResponse {
|
|
.POGOProtos.Networking.Responses.GetPlayerProfileResponse.Result result = 1;
|
|
int64 start_time = 2;
|
|
repeated .POGOProtos.Data.PlayerBadge badges = 3;
|
|
|
|
enum Result {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
}
|
|
}
|