This repository has been archived by the owner on Oct 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
314 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
syntax = "proto3"; | ||
package proto; | ||
import "Request.proto"; | ||
import "Response.proto"; | ||
|
||
option java_package = "net.iGap.proto"; | ||
option java_outer_classname = "ProtoGeoGetComment"; | ||
|
||
message GeoGetComment { | ||
Request request = 1; | ||
uint64 user_id = 2; | ||
} | ||
|
||
message GeoGetCommentResponse { | ||
Response response = 1; | ||
string comment = 2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
syntax = "proto3"; | ||
package proto; | ||
import "Request.proto"; | ||
import "Response.proto"; | ||
|
||
option java_package = "net.iGap.proto"; | ||
option java_outer_classname = "ProtoGeoGetConfiguration"; | ||
|
||
message GeoGetConfiguration { | ||
Request request = 1; | ||
} | ||
|
||
message GeoGetConfigurationResponse { | ||
Response response = 1; | ||
|
||
message TileServer { | ||
string base_url = 1; | ||
} | ||
repeated TileServer tile_server = 2; | ||
|
||
string cache_id = 3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
syntax = "proto3"; | ||
package proto; | ||
import "Request.proto"; | ||
import "Response.proto"; | ||
|
||
option java_package = "net.iGap.proto"; | ||
option java_outer_classname = "ProtoGeoGetNearbyCoordinate"; | ||
|
||
message GeoGetNearbyCoordinate { | ||
Request request = 1; | ||
double lat = 2; | ||
double lon = 3; | ||
} | ||
|
||
message GeoGetNearbyCoordinateResponse { | ||
Response response = 1; | ||
|
||
message Result { | ||
uint64 user_id = 1; | ||
bool has_comment = 2; | ||
double lat = 3; | ||
double lon = 4; | ||
} | ||
repeated Result result = 2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
syntax = "proto3"; | ||
package proto; | ||
import "Request.proto"; | ||
import "Response.proto"; | ||
|
||
option java_package = "net.iGap.proto"; | ||
option java_outer_classname = "ProtoGeoGetNearbyDistance"; | ||
|
||
message GeoGetNearbyDistance { | ||
Request request = 1; | ||
double lat = 2; | ||
double lon = 3; | ||
} | ||
|
||
message GeoGetNearbyDistanceResponse { | ||
Response response = 1; | ||
|
||
message Result { | ||
uint64 user_id = 1; | ||
bool has_comment = 2; | ||
uint32 distance = 3; | ||
} | ||
repeated Result result = 2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
syntax = "proto3"; | ||
package proto; | ||
import "Request.proto"; | ||
import "Response.proto"; | ||
|
||
option java_package = "net.iGap.proto"; | ||
option java_outer_classname = "ProtoGeoGetRegisterStatus"; | ||
|
||
message GeoGetRegisterStatus { | ||
Request request = 1; | ||
} | ||
|
||
message GeoGetRegisterStatusResponse { | ||
Response response = 1; | ||
bool enable = 2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
syntax = "proto3"; | ||
package proto; | ||
import "Request.proto"; | ||
import "Response.proto"; | ||
|
||
option java_package = "net.iGap.proto"; | ||
option java_outer_classname = "ProtoGeoRegister"; | ||
|
||
message GeoRegister { | ||
Request request = 1; | ||
bool enable = 2; | ||
} | ||
|
||
message GeoRegisterResponse { | ||
Response response = 1; | ||
bool enable = 2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
syntax = "proto3"; | ||
package proto; | ||
import "Request.proto"; | ||
import "Response.proto"; | ||
|
||
option java_package = "net.iGap.proto"; | ||
option java_outer_classname = "ProtoGeoUpdateComment"; | ||
|
||
message GeoUpdateComment { | ||
Request request = 1; | ||
string comment = 2; | ||
} | ||
|
||
message GeoUpdateCommentResponse { | ||
Response response = 1; | ||
string comment = 2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
syntax = "proto3"; | ||
package proto; | ||
import "Request.proto"; | ||
import "Response.proto"; | ||
|
||
option java_package = "net.iGap.proto"; | ||
option java_outer_classname = "ProtoGeoUpdatePosition"; | ||
|
||
message GeoUpdatePosition { | ||
Request request = 1; | ||
double lat = 2; | ||
double lon = 3; | ||
} | ||
|
||
message GeoUpdatePositionResponse { | ||
Response response = 1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Rating for the session is requested | ||
|
||
# Response | ||
message [#3060003](../../proto/README.md#action_3060003) | ||
message [#60003](../../proto/README.md#action_60003) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Get geo comment of a specific user | ||
|
||
# Request | ||
message [#1003](../../proto/README.md#action_1003) | ||
|
||
# Response | ||
message [#31003](../../proto/README.md#action_31003) | ||
|
Oops, something went wrong.