Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions show.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ type SimpleShow struct {
// A description of the show.
Description string `json:"description"`

// A description of the episode. This field may contain HTML tags.
HtmlDescription string `json:"html_description"`

// Whether or not the show has explicit content
// (true = yes it does; false = no it does not OR unknown).
Explicit bool `json:"explicit"`
Expand Down Expand Up @@ -89,6 +92,9 @@ type EpisodePage struct {
// A description of the episode.
Description string `json:"description"`

// A description of the episode. This field may contain HTML tags.
HtmlDescription string `json:"html_description"`

// The episode length in milliseconds.
Duration_ms Numeric `json:"duration_ms"`

Expand Down