24 lines
468 B
Protocol Buffer
24 lines
468 B
Protocol Buffer
syntax = "proto3";
|
|
package emailAlerts;
|
|
//import "descriptor.proto";
|
|
//import "validator.proto";
|
|
|
|
option go_package = "./;emailAlerts";
|
|
|
|
service EmailAlerts{
|
|
rpc EmailAlertsSubmit(EmailAlertsSubmitReq) returns (EmailAlertsSubmitResp);
|
|
}
|
|
|
|
message EmailAlertsSubmitReq{
|
|
string uuid = 2;
|
|
string firstName = 3;
|
|
string lastName = 4;
|
|
string email = 5;
|
|
string company = 6;
|
|
string phone = 7;
|
|
}
|
|
|
|
message EmailAlertsSubmitResp{
|
|
string msg = 1;
|
|
}
|