Passport/pkg/proto/notify.proto

33 lines
720 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
option go_package = ".;proto";
package proto;
service NotifyService {
rpc NotifyUser(NotifyUserRequest) returns (NotifyResponse) {}
rpc NotifyUserBatch(NotifyUserBatchRequest) returns (NotifyResponse) {}
rpc NotifyAllUser(NotifyInfo) returns(NotifyResponse) {}
}
message NotifyInfo {
// This bytes is directly encoded from pushkit.Notification
// Which is passed to the pusher service, we don't need to care about the content
bytes data = 1;
bool unsaved = 2;
}
message NotifyUserRequest {
uint64 user_id = 1;
NotifyInfo notify = 2;
}
message NotifyUserBatchRequest {
repeated uint64 user_id = 1;
NotifyInfo notify = 2;
}
message NotifyResponse {
bool is_success = 1;
}