lib/notionex/object/user.ex

defmodule Notionex.Object.User do
  @type t() :: %{
          object: binary,
          id: binary
        }

  defstruct object: "user", id: ""
end