syntax = "proto3";
package POGOProtos.Networking.Responses;

import "POGOProtos/Data/Gift/GiftBoxDetails.proto";

message GiftDetailsResponse {
	Result result = 1;
	repeated .POGOProtos.Data.Gift.GiftBoxDetails gift_boxes = 2;

	enum Result {
		UNSET = 0;
		SUCCESS = 1;
		ERROR_UNKNOWN = 2;
		ERROR_GIFT_DOES_NOT_EXIST = 3;
		ERROR_INVALID_PLAYER_ID = 4;
		ERROR_FRIEND_NOT_FOUND = 5;
		ERROR_FORT_SEARCH = 6;
	}
}
