Files
EdgeCommon/pkg/rpc/protos/models/model_message_receiver.proto
2023-10-14 17:15:52 +08:00

20 lines
447 B
Protocol Buffer
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

syntax = "proto3";
option go_package = "./pb";
package pb;
import "models/model_message_recipient.proto";
import "models/model_message_recipient_group.proto";
message MessageReceiver {
int64 id = 1;
int64 clusterId = 2;
int64 nodeId = 3;
int64 serverId = 4;
string type = 5;
bytes paramsJSON = 6;
string role = 9; // 集群角色node 或 dns
MessageRecipient messageRecipient = 7;
MessageRecipientGroup messageRecipientGroup = 8;
}