mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-18 23:47:20 -05:00
14 lines
286 B
Protocol Buffer
Vendored
14 lines
286 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
message SetFavoritePokemonResponse {
|
|
.POGOProtos.Networking.Responses.SetFavoritePokemonResponse.Result result = 1;
|
|
|
|
enum Result {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
ERROR_POKEMON_NOT_FOUND = 2;
|
|
ERROR_POKEMON_IS_EGG = 3;
|
|
}
|
|
}
|