Current section
Files
Jump to
Current section
Files
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