user_profile.proto 553 B

1234567891011121314151617181920212223
  1. syntax = "proto3";
  2. message UserToken {
  3. string token = 1;
  4. }
  5. message UserProfile {
  6. string id = 1;
  7. string email = 2;
  8. string name = 3;
  9. string token = 4;
  10. }
  11. message UpdateUserPayload {
  12. string id = 1;
  13. oneof one_of_name { string name = 2; };
  14. oneof one_of_email { string email = 3; };
  15. oneof one_of_password { string password = 4; };
  16. }
  17. message UpdateUserParams {
  18. string id = 1;
  19. oneof one_of_name { string name = 2; };
  20. oneof one_of_email { string email = 3; };
  21. oneof one_of_password { string password = 4; };
  22. }