Current section

Files

Jump to
zen_ex lib zen_ex help_center entities section.ex
Raw

lib/zen_ex/help_center/entities/section.ex

defmodule ZenEx.HelpCenter.Entity.Section do
@derive Jason.Encoder
defstruct [
:id,
:name,
:description,
:locale,
:source_locale,
:url,
:html_url,
:category_id,
:outdated,
:position,
:translation_ids,
:created_at,
:updated_at
]
@moduledoc """
Section entity corresponding to Zendesk HelpCenter Section
"""
end