POGOProtos.Networking.Responses.GetIncensePokemonResponse.proto Maven / Gradle / Ivy
syntax = "proto3";
package POGOProtos.Networking.Responses;
import "POGOProtos/Enums/PokemonId.proto";
import "POGOProtos/Data/PokemonDisplay.proto";
message 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;
.POGOProtos.Data.PokemonDisplay pokemon_display = 8;
enum Result {
INCENSE_ENCOUNTER_UNKNOWN = 0;
INCENSE_ENCOUNTER_AVAILABLE = 1;
INCENSE_ENCOUNTER_NOT_AVAILABLE = 2;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy