Compare commits

...

1 Commits

Author SHA1 Message Date
NagyZoltanPeter
cb5d8f19b4 Extended HistoryResponse with new error codes coming with rate limit 2024-05-29 18:55:42 +02:00

View File

@@ -105,6 +105,8 @@ message HistoryResponse {
enum Error {
NONE = 0;
INVALID_CURSOR = 1;
TOO_MANY_REQUESTS = 429;
SERVICE_UNAVAILABLE = 503;
}
Error error = 4;
}