// Link is the URL to the HTML website corresponding to the channel.
Linkstring`xml:"rss link"`
// Description is a phrase or sentence describing the channel.
Descriptionstring`xml:"rss description"`
// Language is the language the channel is written in.
// A list of allowable values for this element, as provided by Netscape, is here: https://www.rssboard.org/rss-language-codes.
// You may also use values defined by the W3C: https://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes.
Languagestring`xml:"rss language"`
// Copyright is a string indicating the copyright.
Copyrightstring`xml:"rss copyRight"`
// ManagingEditor is the email address for the person responsible for editorial content.
ManagingEditorstring`xml:"rss managingEditor"`
// Webmaster is the email address for the person responsible for technical issues relating to the channel.
Webmasterstring`xml:"rss webMaster"`
// PubDate is the publication date for the content in the channel.
// All date-times in RSS conform to the Date and Time Specification of RFC 822, with the exception that the year may be expressed with two characters or four characters (four preferred).
PubDatestring`xml:"rss pubDate"`
// LastBuildDate is the last time the content of the channel changed.
LastBuildDatestring`xml:"rss lastBuildDate"`
// Categories is a collection of categories to which the channel belongs.
Categories[]string`xml:"rss category"`
// Generator is a string indicating the program used to generate the channel.
Generatorstring`xml:"rss generator"`
// Docs is a URL that points to the documentation for the format used in the RSS file.
DocumentationURLstring`xml:"rss docs"`
// Cloud is a web service that supports the rssCloud interface which can be implemented in HTTP-POST, XML-RPC or SOAP 1.1.
Cloud*RSSCloud`xml:"rss cloud"`
// Image specifies a GIF, JPEG or PNG image that can be displayed with the channel.
Image*RSSImage`xml:"rss image"`
// TTL is a number of minutes that indicates how long a channel can be cached before refreshing from the source.
TTLstring`xml:"rss ttl"`
// SkipHours is a hint for aggregators telling them which hours they can skip.
// An XML element that contains up to 24 <hour> sub-elements whose value is a number between 0 and 23,
// representing a time in GMT, when aggregators,
// if they support the feature, may not read the channel on hours listed in the skipHours element.
SkipHours[]string`xml:"rss skipHours>hour"`
// SkipDays is a hint for aggregators telling them which days they can skip.
// An XML element that contains up to seven <day> sub-elements whose value is Monday, Tuesday, Wednesday, Thursday, Friday, Saturday or Sunday.