mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-22 17:37:24 -05:00
15 lines
323 B
Protocol Buffer
Vendored
15 lines
323 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
message RecycleInventoryItemResponse {
|
|
.POGOProtos.Networking.Responses.RecycleInventoryItemResponse.Result result = 1;
|
|
int32 new_count = 2;
|
|
|
|
enum Result {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
ERROR_NOT_ENOUGH_COPIES = 2;
|
|
ERROR_CANNOT_RECYCLE_INCUBATORS = 3;
|
|
}
|
|
}
|