Packages

Pivo is an Elixir interface for the Pivotal Tracker REST API V5.

Current section

Files

Jump to
pivo lib pivo resources comment.ex
Raw

lib/pivo/resources/comment.ex

defmodule Pivo.Resources.Comment do
@moduledoc """
Comment resource module.
"""
@enforce_keys [
:id,
:story_id,
:epic_id,
:text,
:person_id,
:created_at,
:updated_at,
:file_attachment_ids,
:google_attachment_ids,
:attachment_ids,
:commit_identifier,
:commit_type,
:kind
]
use Pivo.Resource
defstruct @enforce_keys
end