19 lines
316 B
Protocol Buffer
19 lines
316 B
Protocol Buffer
|
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;
|
||
|
}
|