mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-24 23:07:41 -05:00
19 lines
404 B
Protocol Buffer
Vendored
19 lines
404 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Data/Gym/GymState.proto";
|
|
|
|
message GetGymDetailsResponse {
|
|
.POGOProtos.Data.Gym.GymState gym_state = 1;
|
|
string name = 2;
|
|
repeated string urls = 3;
|
|
POGOProtos.Networking.Responses.GetGymDetailsResponse.Result result = 4;
|
|
string description = 5;
|
|
|
|
enum Result {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
ERROR_NOT_IN_RANGE = 2;
|
|
}
|
|
}
|