Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func (*Client) GetExcludedMovies ¶
func (c *Client) GetExcludedMovies() (*[]ExcludedMovie, error)
func (*Client) LookupMovieByImdb ¶
type Errors ¶
type Errors []struct { PropertyName string `json:"propertyName"` ErrorMessage string `json:"errorMessage"` AttemptedValue int `json:"attemptedValue"` FormattedMessageArguments []interface{} `json:"formattedMessageArguments"` FormattedMessagePlaceholderValues struct { PropertyName string `json:"propertyName"` PropertyValue int `json:"propertyValue"` } `json:"formattedMessagePlaceholderValues"` }
type ExcludedMovie ¶
type Movie ¶
type Movie struct { Title string `json:"title"` TitleSlug string `json:"titleSlug"` Overview string `json:"overview"` QualityProfileID int `json:"qualityProfileId"` RootFolderPath string `json:"rootFolderPath"` Year int `json:"year"` Monitored bool `json:"monitored"` ImdbId string `json:"imdbId"` TmdbID int `json:"tmdbId"` MinimumAvailability string `json:"minimumAvailability"` Images []struct { CoverType string `json:"coverType"` URL string `json:"url"` } `json:"images"` IsAvailable bool `json:"isAvailable"` AddOptions map[string]interface{} `json:"addOptions"` }
Movie ...
Click to show internal directories.
Click to hide internal directories.