mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-10 11:14:48 -05:00
20 lines
462 B
Protocol Buffer
Vendored
20 lines
462 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
// TODO: Might be incorrect, please test.
|
|
message CheckCodenameAvailableResponse {
|
|
string codename = 1;
|
|
string user_message = 2;
|
|
bool is_assignable = 3;
|
|
.POGOProtos.Networking.Responses.CheckCodenameAvailableResponse.Status status = 4;
|
|
|
|
enum Status {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
CODENAME_NOT_AVAILABLE = 2;
|
|
CODENAME_NOT_VALID = 3;
|
|
CURRENT_OWNER = 4;
|
|
CODENAME_CHANGE_NOT_ALLOWED = 5;
|
|
}
|
|
}
|