overpush/proto/response.proto

19 lines
316 B
Protocol Buffer
Raw Normal View History

2023-05-25 06:57:56 +00:00
syntax = 'proto3';
package overpush;
option go_package = '.;pb';
enum TLDR {
TLDRInvalid = 0;
TLDRSent = 1;
TLDRQueued = 2;
TLDRFailed = 3;
}
message Response {
uint64 timestamp = 1;
string id = 2;
int32 status = 3;
repeated string errors = 4;
// optional string receipt = 5;
}