Packages

An Elixir wrapper for the Stories API, by Clockk.com Inc.

Current section

Files

Jump to
stories lib user.ex
Raw

lib/user.ex

defmodule Stories.User do
use Stories.Resource
defstruct [
:id,
:user_id,
:name,
:email,
:phone,
:created_at,
:updated_at,
:is_full,
:attributes,
tags: []
]
defp resource, do: "users"
end