12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- syntax = "proto3";
- package memos.api.v1;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/protobuf/timestamp.proto";
- option go_package = "gen/api/v1";
- service ActivityService {
- // GetActivity returns the activity with the given id.
- rpc GetActivity(GetActivityRequest) returns (Activity) {
- option (google.api.http) = {get: "/api/v1/{name=activities/*}"};
- option (google.api.method_signature) = "name";
- }
- }
- message Activity {
- // The name of the activity.
- // Format: activities/{id}
- string name = 1;
- // The uid of the user who created the activity.
- int32 creator_id = 2;
- // The type of the activity.
- string type = 3;
- // The level of the activity.
- string level = 4;
- // The create time of the activity.
- google.protobuf.Timestamp create_time = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
- // The payload of the activity.
- ActivityPayload payload = 6;
- }
- message ActivityPayload {
- ActivityMemoCommentPayload memo_comment = 1;
- ActivityVersionUpdatePayload version_update = 2;
- }
- // ActivityMemoCommentPayload represents the payload of a memo comment activity.
- message ActivityMemoCommentPayload {
- // The memo id of comment.
- int32 memo_id = 1;
- // The memo id of related memo.
- int32 related_memo_id = 2;
- }
- message ActivityVersionUpdatePayload {
- // The updated version of memos.
- string version = 1;
- }
- message GetActivityRequest {
- // The name of the activity.
- // Format: activities/{id}
- string name = 1;
- }
|