Passport/pkg/grpc/proto/notify.proto

29 lines
482 B
Protocol Buffer
Raw Normal View History

2024-02-20 13:46:15 +00:00
syntax = "proto3";
option go_package = ".;proto";
package proto;
service Notify {
rpc NotifyUser(NotifyRequest) returns (NotifyReply) {}
}
message NotifyLink {
string label = 1;
string url = 2;
}
message NotifyRequest {
string subject = 1;
string content = 2;
repeated NotifyLink links = 3;
bool is_important = 4;
uint64 recipient_id = 5;
string client_id = 6;
string client_secret = 7;
2024-03-31 08:03:59 +00:00
bool is_realtime = 8;
2024-02-20 13:46:15 +00:00
}
message NotifyReply {
bool is_sent = 1;
}