feed_parser/lib/item.ex

17 lines
452 B
Elixir

defmodule FeedParser.Item do
@moduledoc """
A item in a feed. Has metadata and content from the item.
"""
defstruct [:guid, :url, :links, :title, :content, :date]
@type t() :: %__MODULE__{
guid: String.t(),
url: String.t() | nil,
links: [{href :: String.t(), rel :: String.t()} | href :: String.t()],
title: String.t() | nil,
content: String.t(),
date: DateTime.t()
}
end