mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-05-04 12:00:46 -05:00
15 lines
336 B
Protocol Buffer
Vendored
15 lines
336 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Data/Logs/ActionLogEntry.proto";
|
|
|
|
message SfidaActionLogResponse {
|
|
.POGOProtos.Networking.Responses.SfidaActionLogResponse.Result result = 1;
|
|
repeated .POGOProtos.Data.Logs.ActionLogEntry log_entries = 2;
|
|
|
|
enum Result {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
}
|
|
}
|