Packages

exBankID is a simple stateless API-client for the Swedish BankID API

Current section

Files

Jump to
exBankID lib ex_bank_id http response.ex
Raw

lib/ex_bank_id/http/response.ex

defmodule ExBankID.Http.Response do
@doc false
@type t() :: %__MODULE__{status_code: pos_integer(), body: String.t()}
@enforce_keys [:status_code, :body]
defstruct [:status_code, :body]
end