mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-24 14:57:08 -05:00
15 lines
310 B
Protocol Buffer
Vendored
15 lines
310 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
message NicknamePokemonResponse {
|
|
.POGOProtos.Networking.Responses.NicknamePokemonResponse.Result result = 1;
|
|
|
|
enum Result {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
ERROR_INVALID_NICKNAME = 2;
|
|
ERROR_POKEMON_NOT_FOUND = 3;
|
|
ERROR_POKEMON_IS_EGG = 4;
|
|
}
|
|
}
|