mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-23 09:57:28 -05:00
19 lines
451 B
Protocol Buffer
Vendored
19 lines
451 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Data/PokemonData.proto";
|
|
|
|
message UpgradePokemonResponse {
|
|
.POGOProtos.Networking.Responses.UpgradePokemonResponse.Result result = 1;
|
|
.POGOProtos.Data.PokemonData upgraded_pokemon = 2;
|
|
|
|
enum Result {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
ERROR_POKEMON_NOT_FOUND = 2;
|
|
ERROR_INSUFFICIENT_RESOURCES = 3;
|
|
ERROR_UPGRADE_NOT_AVAILABLE = 4;
|
|
ERROR_POKEMON_IS_DEPLOYED = 5;
|
|
}
|
|
}
|