syntax = "proto3";
package POGOProtos.Networking.Requests.Messages;

import "POGOProtos/Data/Battle/BattleAction.proto";

message GymBattleAttackMessage {
	string gym_id = 1;
	string battle_id = 2;
	repeated .POGOProtos.Data.Battle.BattleAction attacker_actions = 3;
	.POGOProtos.Data.Battle.BattleAction last_retrieved_action = 4;
	double player_lat_degrees = 5;
	double player_lng_degrees = 6;
	int64 timestamp_ms = 7;
}
