reaction_service.proto 323 B

12345678910111213141516171819
  1. syntax = "proto3";
  2. package memos.api.v1;
  3. option go_package = "gen/api/v1";
  4. message Reaction {
  5. int32 id = 1;
  6. // The name of the creator.
  7. // Format: users/{user}
  8. string creator = 2;
  9. // The content identifier.
  10. // For memo, it should be the `Memo.name`.
  11. string content_id = 3;
  12. string reaction_type = 4;
  13. }