D++ (DPP)
C++ Discord API Bot Library
|
The result of any HTTP request. Contains the headers, vital rate limit figures, and returned request body. More...
#include <queues.h>
Public Attributes | |
std::multimap< std::string, std::string > | headers |
HTTP headers of response. More... | |
uint16_t | status = 0 |
HTTP status. e.g. 200 = OK, 404 = Not found, 429 = Rate limited, etc. More... | |
http_error | error = h_success |
Error status. e.g. if the request could not connect at all. More... | |
std::string | ratelimit_bucket |
Ratelimit bucket. More... | |
uint64_t | ratelimit_limit = 0 |
Ratelimit limit of requests. More... | |
uint64_t | ratelimit_remaining = 0 |
Ratelimit remaining requests. More... | |
uint64_t | ratelimit_reset_after = 0 |
Ratelimit reset after (seconds). More... | |
uint64_t | ratelimit_retry_after = 0 |
Ratelimit retry after (seconds). More... | |
bool | ratelimit_global = false |
True if this request has caused us to be globally rate limited. More... | |
std::string | body |
Reply body. More... | |
double | latency |
Ping latency. More... | |
The result of any HTTP request. Contains the headers, vital rate limit figures, and returned request body.
std::string dpp::http_request_completion_t::body |
Reply body.
http_error dpp::http_request_completion_t::error = h_success |
Error status. e.g. if the request could not connect at all.
std::multimap<std::string, std::string> dpp::http_request_completion_t::headers |
HTTP headers of response.
double dpp::http_request_completion_t::latency |
Ping latency.
std::string dpp::http_request_completion_t::ratelimit_bucket |
Ratelimit bucket.
bool dpp::http_request_completion_t::ratelimit_global = false |
True if this request has caused us to be globally rate limited.
uint64_t dpp::http_request_completion_t::ratelimit_limit = 0 |
Ratelimit limit of requests.
uint64_t dpp::http_request_completion_t::ratelimit_remaining = 0 |
Ratelimit remaining requests.
uint64_t dpp::http_request_completion_t::ratelimit_reset_after = 0 |
Ratelimit reset after (seconds).
uint64_t dpp::http_request_completion_t::ratelimit_retry_after = 0 |
Ratelimit retry after (seconds).
uint16_t dpp::http_request_completion_t::status = 0 |
HTTP status. e.g. 200 = OK, 404 = Not found, 429 = Rate limited, etc.