syntax = "proto3"; package POGOProtos.Networking.Responses; import "POGOProtos/Networking/Responses/FortDetailsResponse.proto"; message AddFortModifierResponse { .POGOProtos.Networking.Responses.AddFortModifierResponse.Result result = 1; .POGOProtos.Networking.Responses.FortDetailsResponse fort_details = 2; enum Result { NO_RESULT_SET = 0; SUCCESS = 1; FORT_ALREADY_HAS_MODIFIER = 2; TOO_FAR_AWAY = 3; NO_ITEM_IN_INVENTORY = 4; } }