memos/proto/api/v2/activity_service.proto

54 lines
1 KiB
Protocol Buffer
Raw Normal View History

2023-10-28 00:21:53 +08:00
syntax = "proto3";
package memos.api.v2;
import "google/api/annotations.proto";
2024-02-06 20:55:27 +08:00
import "google/api/client.proto";
2023-10-28 00:21:53 +08:00
import "google/protobuf/timestamp.proto";
option go_package = "gen/api/v2";
service ActivityService {
2024-02-01 21:26:09 +08:00
// GetActivity returns the activity with the given id.
2023-10-28 00:21:53 +08:00
rpc GetActivity(GetActivityRequest) returns (GetActivityResponse) {
2024-02-06 20:55:27 +08:00
option (google.api.http) = {get: "/v2/activities/{id}"};
option (google.api.method_signature) = "id";
2023-10-28 00:21:53 +08:00
}
}
message Activity {
int32 id = 1;
int32 creator_id = 2;
string type = 3;
string level = 4;
google.protobuf.Timestamp create_time = 5;
ActivityPayload payload = 6;
}
message ActivityMemoCommentPayload {
int32 memo_id = 1;
int32 related_memo_id = 2;
}
2023-11-06 22:53:55 +08:00
message ActivityVersionUpdatePayload {
string version = 1;
}
2023-10-28 00:21:53 +08:00
message ActivityPayload {
ActivityMemoCommentPayload memo_comment = 1;
2023-11-06 22:53:55 +08:00
ActivityVersionUpdatePayload version_update = 2;
2023-10-28 00:21:53 +08:00
}
message GetActivityRequest {
int32 id = 1;
}
message GetActivityResponse {
Activity activity = 1;
}