Skip to content

Commit

Permalink
added monitor string in AddSeriesOptions struct (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
woiza authored Mar 15, 2024
1 parent 1d7b409 commit 55eba43
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions sonarr/series.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,11 @@ type Series struct {

// AddSeriesOptions is part of AddSeriesInput.
type AddSeriesOptions struct {
SearchForMissingEpisodes bool `json:"searchForMissingEpisodes"`
SearchForCutoffUnmetEpisodes bool `json:"searchForCutoffUnmetEpisodes,omitempty"`
IgnoreEpisodesWithFiles bool `json:"ignoreEpisodesWithFiles,omitempty"`
IgnoreEpisodesWithoutFiles bool `json:"ignoreEpisodesWithoutFiles,omitempty"`
SearchForMissingEpisodes bool `json:"searchForMissingEpisodes"`
SearchForCutoffUnmetEpisodes bool `json:"searchForCutoffUnmetEpisodes,omitempty"`
Monitor string `json:"monitor,omitempty"`
IgnoreEpisodesWithFiles bool `json:"ignoreEpisodesWithFiles,omitempty"`
IgnoreEpisodesWithoutFiles bool `json:"ignoreEpisodesWithoutFiles,omitempty"`
}

// AlternateTitle is part of a AddSeriesInput.
Expand Down

0 comments on commit 55eba43

Please sign in to comment.