@shipengine/connect-order-source-api
Version:
This is the typescript/javascript definitions for the order source api
14 lines • 732 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RateLimitResponse = void 0;
/** @description This represents the error response for when the 3rd party api's are rate limiting us */
class RateLimitResponse {
/** @description The number of seconds one should wait before making this request again */
retry_after_seconds;
/** @description The (ISO 8601) datetime (UTC) of when the next request can be made @example "2021-03-31T18:21:14.858Z" */
retry_after_time;
/** @description Information returned by the 3rd party systems that might be useful in logs */
throttling_context;
}
exports.RateLimitResponse = RateLimitResponse;
//# sourceMappingURL=rate-limit-response.js.map