mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-19 16:07:22 -05:00
18 lines
394 B
Protocol Buffer
Vendored
18 lines
394 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
message CollectDailyDefenderBonusResponse {
|
|
.POGOProtos.Networking.Responses.CollectDailyDefenderBonusResponse.Result result = 1;
|
|
repeated string currency_type = 2;
|
|
repeated int32 currency_awarded = 3;
|
|
int32 defenders_count = 4;
|
|
|
|
enum Result {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
FAILURE = 2;
|
|
TOO_SOON = 3;
|
|
NO_DEFENDERS = 4;
|
|
}
|
|
}
|