defmodule Bingex.HTTP.Response do @moduledoc """ Represents an HTTP response from the BingX API. """ defstruct [:status, :body, :headers] @type t() :: %__MODULE__{ status: non_neg_integer(), headers: map(), body: nil | binary() } end