Packages

Elixir module for interacting with the Odoo JSON-RPC API. It defines methods for logging in, search, read (including pagination), create, update, delete records, and executing methods.

Current section

Files

Jump to
odooc lib data odoo_http_client_response.ex
Raw

lib/data/odoo_http_client_response.ex

defmodule Odoo.HttpClientResponse do
@moduledoc """
Struct to store formated response from http client
"""
alias __MODULE__
defstruct [
:result,
:cookie
]
@doc false
def new, do: %HttpClientResponse{}
end