base.proto 719 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. syntax = "proto3";
  2. package api.base;
  3. //import "google/api/annotations.proto";
  4. //import "google/protobuf/struct.proto";
  5. //import "google/protobuf/empty.proto";
  6. option go_package = "git.ikuban.com/server/pw-protobuf/api/base;base";
  7. option java_multiple_files = true;
  8. option java_package = "api.base";
  9. message AuthorizationRequest {
  10. string jsCode = 1;
  11. }
  12. message TokenReply {
  13. string token = 1;
  14. }
  15. message DebugLoginRequest {
  16. string id = 1;
  17. string code = 2;
  18. }
  19. message UserAndPartnerIdParam {
  20. string partnerId = 1;
  21. string userId = 2;
  22. }
  23. message User1AndUser2IdParam {
  24. string user1 = 1;
  25. string user2 = 2;
  26. }
  27. message PartnerIDParam {
  28. string partnerID = 1;
  29. }
  30. message UserIDParam {
  31. string userId = 1;
  32. }