Skip to content

Commit

Permalink
WTEL-4660
Browse files Browse the repository at this point in the history
  • Loading branch information
i.navrotskyj committed Jun 18, 2024
1 parent f91d76b commit f32c71d
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions engine/push.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,18 @@ package engine;

option go_package = "github.com/webitel/protos/engine";

import "google/protobuf/struct.proto";

service PushService {
rpc SendPush(SendPushRequest) returns (SendPushRequest) {}
rpc SendPush(SendPushRequest) returns (SendPushResponse) {}
}

message SendPushRequest {
repeated string android = 1;
repeated string apple = 2;
google.protobuf.Value data = 3;
int64 expiration = 4;
int64 expiration = 3;
int32 priority = 4;
map<string,string> data = 5;
}

message SendCallPushResponse {

message SendPushResponse {
int32 send = 1;
}

0 comments on commit f32c71d

Please sign in to comment.