Bingex.HTTP.Response (Bingex v0.1.7)

Represents an HTTP response from the BingX API.

This module defines a structured format for handling HTTP responses, including the status code, headers, and response body.

Summary

Types

t()

@type t() :: %Bingex.HTTP.Response{
  body: nil | binary(),
  headers: [{binary(), binary()}],
  status: non_neg_integer()
}