syntax = "proto3";
package POGOProtos.Networking.Requests.Messages;

import "POGOProtos/Enums/EncounterType.proto";

message SfidaCaptureMessage {
	string spawnpoint_id = 1;
	int64 encounter_id = 2;
	double player_lat = 3;
	double player_lng = 4;
	.POGOProtos.Enums.EncounterType encounter_type = 5;
	double gym_lat = 6;
	double gym_lng = 7;
}
