Fiet v0.2.2 Fiet.RSS2.Channel View Source

A struct that represents <channel> in RSS 2.0.

extras attribute

Fiet.RSS2.Channel contains an extras attribute which can be used to store extra data provided by the feeds (which don’t strictly follow RSS 2.0 specs). See Fiet.RSS2.Engine for more information.

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %Fiet.RSS2.Channel{
  categories: [Fiet.RSS2.Category.t()],
  cloud: Fiet.RSS2.Channel.Cloud.t() | nil,
  copyright: binary() | nil,
  description: binary() | nil,
  docs: binary() | nil,
  extras: map(),
  generator: binary() | nil,
  image: Fiet.RSS2.Image.t() | nil,
  items: [Fiet.RSS2.Item.t()],
  language: binary() | nil,
  last_build_date: binary() | nil,
  link: binary() | nil,
  managing_editor: binary() | nil,
  pub_date: binary() | nil,
  rating: binary() | nil,
  skip_days: term(),
  skip_hours: term(),
  title: binary() | nil,
  ttl: binary() | nil,
  web_master: binary() | nil
}