61 lines
1.1 KiB
Protocol Buffer
61 lines
1.1 KiB
Protocol Buffer
syntax = "proto3";
|
|
import "google/protobuf/struct.proto";
|
|
|
|
package proto;
|
|
|
|
message Alert {
|
|
string title = 1;
|
|
string body = 2;
|
|
string subtitle = 3;
|
|
string action = 4;
|
|
string actionLocKey = 5;
|
|
string launchImage = 6;
|
|
string locKey = 7;
|
|
string titleLocKey = 8;
|
|
repeated string locArgs = 9;
|
|
repeated string titleLocArgs = 10;
|
|
}
|
|
|
|
message NotificationRequest {
|
|
repeated string tokens = 1;
|
|
int32 platform = 2;
|
|
string message = 3;
|
|
string title = 4;
|
|
string topic = 5;
|
|
string key = 6;
|
|
int32 badge = 7;
|
|
string category = 8;
|
|
Alert alert = 9;
|
|
string sound = 10;
|
|
bool contentAvailable = 11;
|
|
string threadID = 12;
|
|
bool mutableContent = 13;
|
|
google.protobuf.Struct data = 14;
|
|
}
|
|
|
|
message NotificationReply {
|
|
bool success = 1;
|
|
int32 counts = 2;
|
|
}
|
|
|
|
service Gorush {
|
|
rpc Send (NotificationRequest) returns (NotificationReply) {}
|
|
}
|
|
|
|
message HealthCheckRequest {
|
|
string service = 1;
|
|
}
|
|
|
|
message HealthCheckResponse {
|
|
enum ServingStatus {
|
|
UNKNOWN = 0;
|
|
SERVING = 1;
|
|
NOT_SERVING = 2;
|
|
}
|
|
ServingStatus status = 1;
|
|
}
|
|
|
|
service Health {
|
|
rpc Check(HealthCheckRequest) returns (HealthCheckResponse);
|
|
}
|