mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-21 17:07:24 -05:00
21 lines
532 B
Protocol Buffer
Vendored
21 lines
532 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Enums/PokemonId.proto";
|
|
|
|
message GetIncensePokemonResponse {
|
|
.POGOProtos.Networking.Responses.GetIncensePokemonResponse.Result result = 1;
|
|
.POGOProtos.Enums.PokemonId pokemon_id = 2;
|
|
double latitude = 3;
|
|
double longitude = 4;
|
|
string encounter_location = 5;
|
|
fixed64 encounter_id = 6;
|
|
int64 disappear_timestamp_ms = 7;
|
|
|
|
enum Result {
|
|
INCENSE_ENCOUNTER_UNKNOWN = 0;
|
|
INCENSE_ENCOUNTER_AVAILABLE = 1;
|
|
INCENSE_ENCOUNTER_NOT_AVAILABLE = 2;
|
|
}
|
|
}
|