syntax = "proto3";
package POGOProtos.Networking.Responses.Social;

import "POGOProtos/Data/Player/PlayerSummary.proto";

message SearchPlayerResponse {
	Result result = 1;
	.POGOProtos.Data.Player.PlayerSummary player = 2;

	enum Result {
		UNSET = 0;
		SUCCESS = 1;
		ERROR_UNKNOWN = 2;
		ERROR_PLAYER_NOT_FOUND = 3;
	}
}
