syntax = "proto3";
package POGOProtos.Data.Logs;

import "POGOProtos/Inventory/Item/ItemData.proto";

message RaidRewardsLogEntry {
	Result result = 1;
	bool is_exclusive = 2;
	repeated .POGOProtos.Inventory.Item.ItemData items = 3;
	repeated .POGOProtos.Inventory.Item.ItemData default_rewards = 4;
	int32 stardust = 5;

	enum Result {
		UNSET = 0;
		SUCCESS = 1;
	}
}
