Extended HistoryResponse with new error codes coming with rate limit

This commit is contained in:
NagyZoltanPeter 2024-05-29 14:25:31 +02:00
parent 7b443c1aab
commit cb5d8f19b4
No known key found for this signature in database
GPG Key ID: 16EADB9673B65368
1 changed files with 2 additions and 0 deletions

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;
}