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