2024-02-08 11:54:59 +08:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2024-04-28 00:44:29 +08:00
|
|
|
package memos.api.v1;
|
2024-02-08 11:54:59 +08:00
|
|
|
|
2024-04-28 00:44:29 +08:00
|
|
|
option go_package = "gen/api/v1";
|
2024-02-08 11:54:59 +08:00
|
|
|
|
|
|
|
message Reaction {
|
|
|
|
int32 id = 1;
|
|
|
|
|
2024-03-18 12:56:52 +08:00
|
|
|
// The name of the creator.
|
2024-03-20 20:39:16 +08:00
|
|
|
// Format: users/{id}
|
2024-02-08 11:54:59 +08:00
|
|
|
string creator = 2;
|
|
|
|
|
|
|
|
string content_id = 3;
|
|
|
|
|
|
|
|
enum Type {
|
|
|
|
TYPE_UNSPECIFIED = 0;
|
2024-02-08 21:20:51 +08:00
|
|
|
THUMBS_UP = 1;
|
|
|
|
THUMBS_DOWN = 2;
|
|
|
|
HEART = 3;
|
|
|
|
FIRE = 4;
|
|
|
|
CLAPPING_HANDS = 5;
|
|
|
|
LAUGH = 6;
|
|
|
|
OK_HAND = 7;
|
|
|
|
ROCKET = 8;
|
|
|
|
EYES = 9;
|
|
|
|
THINKING_FACE = 10;
|
|
|
|
CLOWN_FACE = 11;
|
2024-02-09 21:59:45 +08:00
|
|
|
QUESTION_MARK = 12;
|
2024-02-08 11:54:59 +08:00
|
|
|
}
|
|
|
|
Type reaction_type = 4;
|
|
|
|
}
|