Files
sendico/api/proto/notification_sent.proto
2026-02-09 16:40:52 +01:00

14 lines
292 B
Protocol Buffer

syntax = "proto3";
option go_package = "github.com/tech/sendico/pkg/generated/gmessaging";
import "operation_result.proto";
message NotificationSentEvent {
string user_id = 1;
string template_id = 2;
string channel = 3;
string locale = 4;
OperationResult status = 5;
}