mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-05-04 12:00:46 -05:00
19 lines
453 B
Protocol Buffer
19 lines
453 B
Protocol Buffer
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Inventory/AppliedItems.proto";
|
|
|
|
message UseItemXpBoostResponse {
|
|
.POGOProtos.Networking.Responses.UseItemXpBoostResponse.Result result = 1;
|
|
.POGOProtos.Inventory.AppliedItems applied_items = 2;
|
|
|
|
enum Result {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
ERROR_INVALID_ITEM_TYPE = 2;
|
|
ERROR_XP_BOOST_ALREADY_ACTIVE = 3;
|
|
ERROR_NO_ITEMS_REMAINING = 4;
|
|
ERROR_LOCATION_UNSET = 5;
|
|
}
|
|
}
|