| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- syntax = "proto3";
- package api.base;
- //import "google/api/annotations.proto";
- //import "google/protobuf/struct.proto";
- //import "google/protobuf/empty.proto";
- option go_package = "git.ikuban.com/server/pw-protobuf/api/base;base";
- option java_multiple_files = true;
- option java_package = "api.base";
- message AuthorizationRequest {
- string jsCode = 1;
- }
- message TokenReply {
- string token = 1;
- }
- message DebugLoginRequest {
- string id = 1;
- string code = 2;
- }
- message UserAndPartnerIdParam {
- string partnerId = 1;
- string userId = 2;
- }
- message User1AndUser2IdParam {
- string user1 = 1;
- string user2 = 2;
- }
- message PartnerIDParam {
- string partnerID = 1;
- }
- message UserIDParam {
- string userId = 1;
- }
|