syntax = "proto3";
package POGOProtos.Networking.Responses;

import "POGOProtos/Inventory/Loot.proto";

message GetFitnessRewardsResponse {
	Result result = 1;
	.POGOProtos.Inventory.Loot rewards = 2;

	enum Result {
		UNSET = 0;
		SUCCESS = 1;
		REWARDS_ALREADY_COLLECTED = 2;
		ERROR_UNKNOWN = 3;
	}
}
