defmodule Podium do @moduledoc """ An HTTP client for the Podium API. """ @doc """ Create a conversation item. """ @spec create_conversation_item() :: nil def create_conversation_item do nil end @doc """ Update a conversation item. """ @spec update_conversation_item() :: nil def update_conversation_item do nil end @doc """ Delete a conversation item. """ @spec delete_conversation_item() :: nil def delete_conversation_item do nil end @doc """ Create a message. """ @spec create_message() :: nil def create_message do nil end @doc """ Create an interaction. """ @spec create_interaction() :: nil def create_interaction do nil end @doc """ Update an interaction. """ @spec update_interaction() :: nil def update_interaction do nil end end