14 lines
292 B
Protocol Buffer
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;
|
|
}
|