Soap.Response (soa v0.1.9)

Struct for response given by soap call.

Summary

Functions

Executing with xml response body as string.

Types

@type t() :: %Soap.Response{
  body: any(),
  headers: [tuple()],
  request_url: String.t(),
  status_code: pos_integer()
}

Functions

Link to this function

parse(response)

Executing with xml response body as string.

Function parse/1 returns a full parsed response structure as map.

Link to this function

parse(body, status_code)

@spec parse(t() | String.t(), integer()) :: map()