tvdb

package module
v0.2.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 28, 2023 License: MIT Imports: 8 Imported by: 2

README

dashotv/tvdb

TVDB API in Go

Build Status GoDoc Go Report Card License

Usage

Install the package with:

go get github.com/dashotv/tvdb

Import the package with:

import "github.com/dashotv/tvdb"

Create a new client with:

client := tvdb.New(apikey)

If you don't already have a token, you can obtain one with:

// Authenticate with your API key. This will return the token and
// will also configure the client with Bearer authentication.
token, err := client.Login()
if err != nil {
    // handle error
}

You should store the token somewhere, by default the token is viable for 30 days. TVDB doesn't appear to care if you auth every call, but it adds a lot of overhead.

If you already have the token, you can set it with:

client.SetToken(token)

This will configure the client with the token and configure Bearer authentication.

Development

Crate a local .env file with the following content:

# .env
TVDB_API_URL=https://api4.thetvdb.com/v4
TVDB_API_KEY=your_api_key
TVDB_API_TOKEN=your_api_token

Run the following to get the make targets:

make help


Usage:
  make <target>

Targets:
    clean               Remove build related file
  Test:
    test                Run the tests of the project
    coverage            Run the tests of the project and export the coverage
  Lint:
    lint                Run all available linters
    lint-go             Use golintci-lint on your project
  Help:
    help                Show this help.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Bool added in v0.2.0

func Bool(b bool) *bool

func BoolValue added in v0.2.1

func BoolValue(v *bool) bool

BoolValue returns the value of pointer if set, otherwise the zero value

func Float32

func Float32(f float32) *float32

func Float32Value

func Float32Value(v *float32) float32

Float32Value returns the value of pointer if set, otherwise the zero value

func Float64 added in v0.2.0

func Float64(f float64) *float64

func Float64Value added in v0.2.1

func Float64Value(v *float64) float64

Float64Value returns the value of pointer if set, otherwise the zero value

func Int added in v0.2.0

func Int(i int) *int

func Int64 added in v0.2.0

func Int64(i int64) *int64

func Int64Value added in v0.2.1

func Int64Value(v *int64) int64

Int64Value returns the value of pointer if set, otherwise the zero value

func IntValue added in v0.2.1

func IntValue(v *int) int

IntValue returns the value of pointer if set, otherwise the zero value

func String

func String(s string) *string

pointers

func StringValue

func StringValue(v *string) string

StringValue returns the value of pointer if set, otherwise the zero value

Types

type Client

type Client struct {
	Key   string
	Token string
	// contains filtered or unexported fields
}

func Login added in v0.1.1

func Login(apikey string) (*Client, error)

Login creates a new client by logging in with an apikey

func New

func New(apikey, token string) *Client

New creates a client with an existing token

func (*Client) GetAllArtworkStatuses

func (c *Client) GetAllArtworkStatuses() (*GetAllArtworkStatusesResponse, error)

GetAllArtworkStatuses wraps the generated openapi.SDK.ArtworkStatuses.GetAllArtworkStatuses call

func (*Client) GetAllArtworkTypes

func (c *Client) GetAllArtworkTypes() (*GetAllArtworkTypesResponse, error)

GetAllArtworkTypes wraps the generated openapi.SDK.ArtworkTypes.GetAllArtworkTypes call

func (*Client) GetAllAwards

func (c *Client) GetAllAwards() (*GetAllAwardsResponse, error)

GetAllAwards wraps the generated openapi.SDK.Awards.GetAllAwards call

func (*Client) GetAllCompanies

func (c *Client) GetAllCompanies(page *int64) (*GetAllCompaniesResponse, error)

GetAllCompanies wraps the generated openapi.SDK.Companies.GetAllCompanies call

func (*Client) GetAllContentRatings

func (c *Client) GetAllContentRatings() (*GetAllContentRatingsResponse, error)

GetAllContentRatings wraps the generated openapi.SDK.ContentRatings.GetAllContentRatings call

func (*Client) GetAllCountries

func (c *Client) GetAllCountries() (*GetAllCountriesResponse, error)

GetAllCountries wraps the generated openapi.SDK.Countries.GetAllCountries call

func (*Client) GetAllEpisodes

func (c *Client) GetAllEpisodes(page *int64) (*GetAllEpisodesResponse, error)

GetAllEpisodes wraps the generated openapi.SDK.Episodes.GetAllEpisodes call

func (*Client) GetAllGenders

func (c *Client) GetAllGenders() (*GetAllGendersResponse, error)

GetAllGenders wraps the generated openapi.SDK.Genders.GetAllGenders call

func (*Client) GetAllGenres

func (c *Client) GetAllGenres() (*GetAllGenresResponse, error)

GetAllGenres wraps the generated openapi.SDK.Genres.GetAllGenres call

func (*Client) GetAllInspirationTypes

func (c *Client) GetAllInspirationTypes() (*GetAllInspirationTypesResponse, error)

GetAllInspirationTypes wraps the generated openapi.SDK.InspirationTypes.GetAllInspirationTypes call

func (*Client) GetAllLanguages

func (c *Client) GetAllLanguages() (*GetAllLanguagesResponse, error)

GetAllLanguages wraps the generated openapi.SDK.Languages.GetAllLanguages call

func (*Client) GetAllLists

func (c *Client) GetAllLists(page *int64) (*GetAllListsResponse, error)

GetAllLists wraps the generated openapi.SDK.Lists.GetAllLists call

func (*Client) GetAllMovie

func (c *Client) GetAllMovie(page *int64) (*GetAllMovieResponse, error)

GetAllMovie wraps the generated openapi.SDK.Movies.GetAllMovie call

func (*Client) GetAllMovieStatuses

func (c *Client) GetAllMovieStatuses() (*GetAllMovieStatusesResponse, error)

GetAllMovieStatuses wraps the generated openapi.SDK.MovieStatuses.GetAllMovieStatuses call

func (*Client) GetAllPeople

func (c *Client) GetAllPeople(page *int64) (*GetAllPeopleResponse, error)

GetAllPeople wraps the generated openapi.SDK.People.GetAllPeople call

func (*Client) GetAllPeopleTypes

func (c *Client) GetAllPeopleTypes() (*GetAllPeopleTypesResponse, error)

GetAllPeopleTypes wraps the generated openapi.SDK.PeopleTypes.GetAllPeopleTypes call

func (*Client) GetAllSeasons

func (c *Client) GetAllSeasons(page *int64) (*GetAllSeasonsResponse, error)

GetAllSeasons wraps the generated openapi.SDK.Seasons.GetAllSeasons call

func (*Client) GetAllSeries

func (c *Client) GetAllSeries(page *int64) (*GetAllSeriesResponse, error)

GetAllSeries wraps the generated openapi.SDK.Series.GetAllSeries call

func (*Client) GetAllSeriesStatuses

func (c *Client) GetAllSeriesStatuses() (*GetAllSeriesStatusesResponse, error)

GetAllSeriesStatuses wraps the generated openapi.SDK.SeriesStatuses.GetAllSeriesStatuses call

func (*Client) GetAllSourceTypes

func (c *Client) GetAllSourceTypes() (*GetAllSourceTypesResponse, error)

GetAllSourceTypes wraps the generated openapi.SDK.SourceTypes.GetAllSourceTypes call

func (*Client) GetArtworkBase

func (c *Client) GetArtworkBase(id int64) (*GetArtworkBaseResponse, error)

GetArtworkBase wraps the generated openapi.SDK.Artwork.GetArtworkBase call

func (*Client) GetArtworkExtended

func (c *Client) GetArtworkExtended(id int64) (*GetArtworkExtendedResponse, error)

GetArtworkExtended wraps the generated openapi.SDK.Artwork.GetArtworkExtended call

func (*Client) GetAward

func (c *Client) GetAward(id int64) (*GetAwardResponse, error)

GetAward wraps the generated openapi.SDK.Awards.GetAward call

func (*Client) GetAwardCategory

func (c *Client) GetAwardCategory(id int64) (*GetAwardCategoryResponse, error)

GetAwardCategory wraps the generated openapi.SDK.AwardCategories.GetAwardCategory call

func (*Client) GetAwardCategoryExtended

func (c *Client) GetAwardCategoryExtended(id int64) (*GetAwardCategoryExtendedResponse, error)

GetAwardCategoryExtended wraps the generated openapi.SDK.AwardCategories.GetAwardCategoryExtended call

func (*Client) GetAwardExtended

func (c *Client) GetAwardExtended(id int64) (*GetAwardExtendedResponse, error)

GetAwardExtended wraps the generated openapi.SDK.Awards.GetAwardExtended call

func (*Client) GetCharacterBase

func (c *Client) GetCharacterBase(id int64) (*GetCharacterBaseResponse, error)

GetCharacterBase wraps the generated openapi.SDK.Characters.GetCharacterBase call

func (*Client) GetCompany

func (c *Client) GetCompany(id int64) (*GetCompanyResponse, error)

GetCompany wraps the generated openapi.SDK.Companies.GetCompany call

func (*Client) GetCompanyTypes

func (c *Client) GetCompanyTypes() (*GetCompanyTypesResponse, error)

GetCompanyTypes wraps the generated openapi.SDK.Companies.GetCompanyTypes call

func (*Client) GetEntityTypes

func (c *Client) GetEntityTypes() (*GetEntityTypesResponse, error)

GetEntityTypes wraps the generated openapi.SDK.EntityTypes.GetEntityTypes call

func (*Client) GetEpisodeBase

func (c *Client) GetEpisodeBase(id int64) (*GetEpisodeBaseResponse, error)

GetEpisodeBase wraps the generated openapi.SDK.Episodes.GetEpisodeBase call

func (*Client) GetEpisodeExtended

func (c *Client) GetEpisodeExtended(id int64, meta *operations.GetEpisodeExtendedMeta) (*GetEpisodeExtendedResponse, error)

GetEpisodeExtended wraps the generated openapi.SDK.Episodes.GetEpisodeExtended call

func (*Client) GetEpisodeTranslation

func (c *Client) GetEpisodeTranslation(id int64, language string) (*GetEpisodeTranslationResponse, error)

GetEpisodeTranslation wraps the generated openapi.SDK.Episodes.GetEpisodeTranslation call

func (*Client) GetGenreBase

func (c *Client) GetGenreBase(id int64) (*GetGenreBaseResponse, error)

GetGenreBase wraps the generated openapi.SDK.Genres.GetGenreBase call

func (*Client) GetList

func (c *Client) GetList(id int64) (*GetListResponse, error)

GetList wraps the generated openapi.SDK.Lists.GetList call

func (*Client) GetListBySlug

func (c *Client) GetListBySlug(slug string) (*GetListBySlugResponse, error)

GetListBySlug wraps the generated openapi.SDK.Lists.GetListBySlug call

func (*Client) GetListExtended

func (c *Client) GetListExtended(id int64) (*GetListExtendedResponse, error)

GetListExtended wraps the generated openapi.SDK.Lists.GetListExtended call

func (*Client) GetListTranslation

func (c *Client) GetListTranslation(id int64, language string) (*GetListTranslationResponse, error)

GetListTranslation wraps the generated openapi.SDK.Lists.GetListTranslation call

func (*Client) GetMovieBase

func (c *Client) GetMovieBase(id int64) (*GetMovieBaseResponse, error)

GetMovieBase wraps the generated openapi.SDK.Movies.GetMovieBase call

func (*Client) GetMovieBaseBySlug

func (c *Client) GetMovieBaseBySlug(slug string) (*GetMovieBaseBySlugResponse, error)

GetMovieBaseBySlug wraps the generated openapi.SDK.Movies.GetMovieBaseBySlug call

func (*Client) GetMovieExtended

func (c *Client) GetMovieExtended(id int64, meta *operations.GetMovieExtendedMeta, short *bool) (*GetMovieExtendedResponse, error)

GetMovieExtended wraps the generated openapi.SDK.Movies.GetMovieExtended call

func (*Client) GetMovieTranslation

func (c *Client) GetMovieTranslation(id int64, language string) (*GetMovieTranslationResponse, error)

GetMovieTranslation wraps the generated openapi.SDK.Movies.GetMovieTranslation call

func (*Client) GetMoviesFilter

func (c *Client) GetMoviesFilter(request operations.GetMoviesFilterRequest) (*GetMoviesFilterResponse, error)

GetMoviesFilter wraps the generated openapi.SDK.Movies.GetMoviesFilter call

func (*Client) GetPeopleBase

func (c *Client) GetPeopleBase(id int64) (*GetPeopleBaseResponse, error)

GetPeopleBase wraps the generated openapi.SDK.People.GetPeopleBase call

func (*Client) GetPeopleExtended

func (c *Client) GetPeopleExtended(id int64, meta *operations.GetPeopleExtendedMeta) (*GetPeopleExtendedResponse, error)

GetPeopleExtended wraps the generated openapi.SDK.People.GetPeopleExtended call

func (*Client) GetPeopleTranslation

func (c *Client) GetPeopleTranslation(id int64, language string) (*GetPeopleTranslationResponse, error)

GetPeopleTranslation wraps the generated openapi.SDK.People.GetPeopleTranslation call

func (*Client) GetSearchResults

func (c *Client) GetSearchResults(request operations.GetSearchResultsRequest) (*GetSearchResultsResponse, error)

GetSearchResults wraps the generated openapi.SDK.Search.GetSearchResults call

func (*Client) GetSearchResultsByRemoteID added in v0.1.1

func (c *Client) GetSearchResultsByRemoteID(remoteID string) (*GetSearchResultsByRemoteIDResponse, error)

GetSearchResultsByRemoteID wraps the generated openapi.SDK.Search.GetSearchResultsByRemoteID call

func (*Client) GetSeasonBase

func (c *Client) GetSeasonBase(id int64) (*GetSeasonBaseResponse, error)

GetSeasonBase wraps the generated openapi.SDK.Seasons.GetSeasonBase call

func (*Client) GetSeasonExtended

func (c *Client) GetSeasonExtended(id int64) (*GetSeasonExtendedResponse, error)

GetSeasonExtended wraps the generated openapi.SDK.Seasons.GetSeasonExtended call

func (*Client) GetSeasonTypes

func (c *Client) GetSeasonTypes() (*GetSeasonTypesResponse, error)

GetSeasonTypes wraps the generated openapi.SDK.Seasons.GetSeasonTypes call

func (*Client) GetSeriesArtworks

func (c *Client) GetSeriesArtworks(id int64, lang *string, type_ *int64) (*GetSeriesArtworksResponse, error)

GetSeriesArtworks wraps the generated openapi.SDK.Series.GetSeriesArtworks call

func (*Client) GetSeriesBase

func (c *Client) GetSeriesBase(id int64) (*GetSeriesBaseResponse, error)

GetSeriesBase wraps the generated openapi.SDK.Series.GetSeriesBase call

func (*Client) GetSeriesBaseBySlug

func (c *Client) GetSeriesBaseBySlug(slug string) (*GetSeriesBaseBySlugResponse, error)

GetSeriesBaseBySlug wraps the generated openapi.SDK.Series.GetSeriesBaseBySlug call

func (*Client) GetSeriesEpisodes

func (c *Client) GetSeriesEpisodes(request operations.GetSeriesEpisodesRequest) (*GetSeriesEpisodesResponse, error)

GetSeriesEpisodes wraps the generated openapi.SDK.Series.GetSeriesEpisodes call

func (*Client) GetSeriesExtended

func (c *Client) GetSeriesExtended(id int64, meta *operations.GetSeriesExtendedMeta, short *bool) (*GetSeriesExtendedResponse, error)

GetSeriesExtended wraps the generated openapi.SDK.Series.GetSeriesExtended call

func (*Client) GetSeriesFilter

func (c *Client) GetSeriesFilter(request operations.GetSeriesFilterRequest) (*GetSeriesFilterResponse, error)

GetSeriesFilter wraps the generated openapi.SDK.Series.GetSeriesFilter call

func (*Client) GetSeriesNextAired

func (c *Client) GetSeriesNextAired(id int64) (*GetSeriesNextAiredResponse, error)

GetSeriesNextAired wraps the generated openapi.SDK.Series.GetSeriesNextAired call

func (*Client) GetSeriesSeasonEpisodesTranslated

func (c *Client) GetSeriesSeasonEpisodesTranslated(id int64, lang string, page int64, seasonType string) (*GetSeriesSeasonEpisodesTranslatedResponse, error)

GetSeriesSeasonEpisodesTranslated wraps the generated openapi.SDK.Series.GetSeriesSeasonEpisodesTranslated call

func (*Client) GetSeriesTranslation

func (c *Client) GetSeriesTranslation(id int64, language string) (*GetSeriesTranslationResponse, error)

GetSeriesTranslation wraps the generated openapi.SDK.Series.GetSeriesTranslation call

func (*Client) PostLogin

func (c *Client) PostLogin(request operations.PostLoginRequestBody) (*PostLoginResponse, error)

PostLogin wraps the generated openapi.SDK.Login.PostLogin call

func (*Client) Updates

func (c *Client) Updates(since int64, action *operations.UpdatesAction, page *int64, type_ *operations.UpdatesType) (*UpdatesResponse, error)

Updates wraps the generated openapi.SDK.Updates.Updates call

type CreateUserFavoritesFullResponse added in v0.2.0

type CreateUserFavoritesFullResponse = operations.CreateUserFavoritesResponse

request, response

type GetAllArtworkStatusesFullResponse added in v0.2.0

type GetAllArtworkStatusesFullResponse = operations.GetAllArtworkStatusesResponse

type GetAllArtworkTypesFullResponse added in v0.2.0

type GetAllArtworkTypesFullResponse = operations.GetAllArtworkTypesResponse

type GetAllAwardsFullResponse added in v0.2.0

type GetAllAwardsFullResponse = operations.GetAllAwardsResponse

type GetAllCompaniesFullResponse added in v0.2.0

type GetAllCompaniesFullResponse = operations.GetAllCompaniesResponse

type GetAllCompaniesRequest added in v0.2.0

type GetAllCompaniesRequest = operations.GetAllCompaniesRequest

type GetAllContentRatingsFullResponse added in v0.2.0

type GetAllContentRatingsFullResponse = operations.GetAllContentRatingsResponse

type GetAllCountriesFullResponse added in v0.2.0

type GetAllCountriesFullResponse = operations.GetAllCountriesResponse

type GetAllEpisodesFullResponse added in v0.2.0

type GetAllEpisodesFullResponse = operations.GetAllEpisodesResponse

type GetAllEpisodesRequest added in v0.2.0

type GetAllEpisodesRequest = operations.GetAllEpisodesRequest

type GetAllGendersFullResponse added in v0.2.0

type GetAllGendersFullResponse = operations.GetAllGendersResponse

type GetAllGenresFullResponse added in v0.2.0

type GetAllGenresFullResponse = operations.GetAllGenresResponse

type GetAllInspirationTypesFullResponse added in v0.2.0

type GetAllInspirationTypesFullResponse = operations.GetAllInspirationTypesResponse

type GetAllLanguagesFullResponse added in v0.2.0

type GetAllLanguagesFullResponse = operations.GetAllLanguagesResponse

type GetAllListsFullResponse added in v0.2.0

type GetAllListsFullResponse = operations.GetAllListsResponse

type GetAllListsRequest added in v0.2.0

type GetAllListsRequest = operations.GetAllListsRequest

type GetAllMovieFullResponse added in v0.2.0

type GetAllMovieFullResponse = operations.GetAllMovieResponse

type GetAllMovieRequest added in v0.2.0

type GetAllMovieRequest = operations.GetAllMovieRequest

type GetAllMovieStatusesFullResponse added in v0.2.0

type GetAllMovieStatusesFullResponse = operations.GetAllMovieStatusesResponse

type GetAllPeopleFullResponse added in v0.2.0

type GetAllPeopleFullResponse = operations.GetAllPeopleResponse

type GetAllPeopleRequest added in v0.2.0

type GetAllPeopleRequest = operations.GetAllPeopleRequest

type GetAllPeopleTypesFullResponse added in v0.2.0

type GetAllPeopleTypesFullResponse = operations.GetAllPeopleTypesResponse

type GetAllSeasonsFullResponse added in v0.2.0

type GetAllSeasonsFullResponse = operations.GetAllSeasonsResponse

type GetAllSeasonsRequest added in v0.2.0

type GetAllSeasonsRequest = operations.GetAllSeasonsRequest

type GetAllSeriesFullResponse added in v0.2.0

type GetAllSeriesFullResponse = operations.GetAllSeriesResponse

type GetAllSeriesRequest added in v0.2.0

type GetAllSeriesRequest = operations.GetAllSeriesRequest

type GetAllSeriesStatusesFullResponse added in v0.2.0

type GetAllSeriesStatusesFullResponse = operations.GetAllSeriesStatusesResponse

type GetAllSourceTypesFullResponse added in v0.2.0

type GetAllSourceTypesFullResponse = operations.GetAllSourceTypesResponse

type GetArtworkBaseFullResponse added in v0.2.0

type GetArtworkBaseFullResponse = operations.GetArtworkBaseResponse

type GetArtworkBaseRequest added in v0.2.0

type GetArtworkBaseRequest = operations.GetArtworkBaseRequest

type GetArtworkExtendedFullResponse added in v0.2.0

type GetArtworkExtendedFullResponse = operations.GetArtworkExtendedResponse

type GetArtworkExtendedRequest added in v0.2.0

type GetArtworkExtendedRequest = operations.GetArtworkExtendedRequest

type GetAwardCategoryExtendedFullResponse added in v0.2.0

type GetAwardCategoryExtendedFullResponse = operations.GetAwardCategoryExtendedResponse

type GetAwardCategoryExtendedRequest added in v0.2.0

type GetAwardCategoryExtendedRequest = operations.GetAwardCategoryExtendedRequest

type GetAwardCategoryFullResponse added in v0.2.0

type GetAwardCategoryFullResponse = operations.GetAwardCategoryResponse

type GetAwardCategoryRequest added in v0.2.0

type GetAwardCategoryRequest = operations.GetAwardCategoryRequest

type GetAwardExtendedFullResponse added in v0.2.0

type GetAwardExtendedFullResponse = operations.GetAwardExtendedResponse

type GetAwardExtendedRequest added in v0.2.0

type GetAwardExtendedRequest = operations.GetAwardExtendedRequest

type GetAwardFullResponse added in v0.2.0

type GetAwardFullResponse = operations.GetAwardResponse

type GetAwardRequest added in v0.2.0

type GetAwardRequest = operations.GetAwardRequest

type GetCharacterBaseFullResponse added in v0.2.0

type GetCharacterBaseFullResponse = operations.GetCharacterBaseResponse

type GetCharacterBaseRequest added in v0.2.0

type GetCharacterBaseRequest = operations.GetCharacterBaseRequest

type GetCompanyFullResponse added in v0.2.0

type GetCompanyFullResponse = operations.GetCompanyResponse

type GetCompanyRequest added in v0.2.0

type GetCompanyRequest = operations.GetCompanyRequest

type GetCompanyTypesFullResponse added in v0.2.0

type GetCompanyTypesFullResponse = operations.GetCompanyTypesResponse

type GetEntityTypesFullResponse added in v0.2.0

type GetEntityTypesFullResponse = operations.GetEntityTypesResponse

type GetEpisodeBaseFullResponse added in v0.2.0

type GetEpisodeBaseFullResponse = operations.GetEpisodeBaseResponse

type GetEpisodeBaseRequest added in v0.2.0

type GetEpisodeBaseRequest = operations.GetEpisodeBaseRequest

type GetEpisodeExtendedFullResponse added in v0.2.0

type GetEpisodeExtendedFullResponse = operations.GetEpisodeExtendedResponse

type GetEpisodeExtendedMeta added in v0.2.0

type GetEpisodeExtendedMeta = operations.GetEpisodeExtendedMeta

type GetEpisodeExtendedRequest added in v0.2.0

type GetEpisodeExtendedRequest = operations.GetEpisodeExtendedRequest

type GetEpisodeTranslationFullResponse added in v0.2.0

type GetEpisodeTranslationFullResponse = operations.GetEpisodeTranslationResponse

type GetEpisodeTranslationRequest added in v0.2.0

type GetEpisodeTranslationRequest = operations.GetEpisodeTranslationRequest

type GetGenreBaseFullResponse added in v0.2.0

type GetGenreBaseFullResponse = operations.GetGenreBaseResponse

type GetGenreBaseRequest added in v0.2.0

type GetGenreBaseRequest = operations.GetGenreBaseRequest

type GetListBySlugFullResponse added in v0.2.0

type GetListBySlugFullResponse = operations.GetListBySlugResponse

type GetListBySlugRequest added in v0.2.0

type GetListBySlugRequest = operations.GetListBySlugRequest

type GetListExtendedFullResponse added in v0.2.0

type GetListExtendedFullResponse = operations.GetListExtendedResponse

type GetListExtendedRequest added in v0.2.0

type GetListExtendedRequest = operations.GetListExtendedRequest

type GetListFullResponse added in v0.2.0

type GetListFullResponse = operations.GetListResponse

type GetListRequest added in v0.2.0

type GetListRequest = operations.GetListRequest

type GetListTranslationFullResponse added in v0.2.0

type GetListTranslationFullResponse = operations.GetListTranslationResponse

type GetListTranslationRequest added in v0.2.0

type GetListTranslationRequest = operations.GetListTranslationRequest

type GetMovieBaseBySlugFullResponse added in v0.2.0

type GetMovieBaseBySlugFullResponse = operations.GetMovieBaseBySlugResponse

type GetMovieBaseBySlugRequest added in v0.2.0

type GetMovieBaseBySlugRequest = operations.GetMovieBaseBySlugRequest

type GetMovieBaseFullResponse added in v0.2.0

type GetMovieBaseFullResponse = operations.GetMovieBaseResponse

type GetMovieBaseRequest added in v0.2.0

type GetMovieBaseRequest = operations.GetMovieBaseRequest

type GetMovieExtendedFullResponse added in v0.2.0

type GetMovieExtendedFullResponse = operations.GetMovieExtendedResponse

type GetMovieExtendedMeta added in v0.2.0

type GetMovieExtendedMeta = operations.GetMovieExtendedMeta

type GetMovieExtendedRequest added in v0.2.0

type GetMovieExtendedRequest = operations.GetMovieExtendedRequest

type GetMovieTranslationFullResponse added in v0.2.0

type GetMovieTranslationFullResponse = operations.GetMovieTranslationResponse

type GetMovieTranslationRequest added in v0.2.0

type GetMovieTranslationRequest = operations.GetMovieTranslationRequest

type GetMoviesFilterFullResponse added in v0.2.0

type GetMoviesFilterFullResponse = operations.GetMoviesFilterResponse

type GetMoviesFilterGenre added in v0.2.1

type GetMoviesFilterGenre = operations.GetMoviesFilterGenre

type GetMoviesFilterRequest added in v0.2.0

type GetMoviesFilterRequest = operations.GetMoviesFilterRequest

type GetMoviesFilterSort added in v0.2.0

type GetMoviesFilterSort = operations.GetMoviesFilterSort

type GetMoviesFilterStatus added in v0.2.1

type GetMoviesFilterStatus = operations.GetMoviesFilterStatus

type GetPeopleBaseFullResponse added in v0.2.0

type GetPeopleBaseFullResponse = operations.GetPeopleBaseResponse

type GetPeopleBaseRequest added in v0.2.0

type GetPeopleBaseRequest = operations.GetPeopleBaseRequest

type GetPeopleExtendedFullResponse added in v0.2.0

type GetPeopleExtendedFullResponse = operations.GetPeopleExtendedResponse

type GetPeopleExtendedMeta added in v0.2.0

type GetPeopleExtendedMeta = operations.GetPeopleExtendedMeta

type GetPeopleExtendedRequest added in v0.2.0

type GetPeopleExtendedRequest = operations.GetPeopleExtendedRequest

type GetPeopleTranslationFullResponse added in v0.2.0

type GetPeopleTranslationFullResponse = operations.GetPeopleTranslationResponse

type GetPeopleTranslationRequest added in v0.2.0

type GetPeopleTranslationRequest = operations.GetPeopleTranslationRequest

type GetSearchResultsByRemoteIDFullResponse added in v0.2.0

type GetSearchResultsByRemoteIDFullResponse = operations.GetSearchResultsByRemoteIDResponse

type GetSearchResultsByRemoteIDRequest added in v0.2.0

type GetSearchResultsByRemoteIDRequest = operations.GetSearchResultsByRemoteIDRequest

type GetSearchResultsByRemoteIDResponse added in v0.2.0

type GetSearchResultsByRemoteIDResponse = operations.GetSearchResultsByRemoteID200ApplicationJSON

type GetSearchResultsFullResponse added in v0.2.0

type GetSearchResultsFullResponse = operations.GetSearchResultsResponse

type GetSearchResultsRequest added in v0.2.0

type GetSearchResultsRequest = operations.GetSearchResultsRequest

type GetSeasonBaseFullResponse added in v0.2.0

type GetSeasonBaseFullResponse = operations.GetSeasonBaseResponse

type GetSeasonBaseRequest added in v0.2.0

type GetSeasonBaseRequest = operations.GetSeasonBaseRequest

type GetSeasonExtendedFullResponse added in v0.2.0

type GetSeasonExtendedFullResponse = operations.GetSeasonExtendedResponse

type GetSeasonExtendedRequest added in v0.2.0

type GetSeasonExtendedRequest = operations.GetSeasonExtendedRequest

type GetSeasonTranslationFullResponse added in v0.2.0

type GetSeasonTranslationFullResponse = operations.GetSeasonTranslationResponse

type GetSeasonTranslationRequest added in v0.2.0

type GetSeasonTranslationRequest = operations.GetSeasonTranslationRequest

type GetSeasonTypesFullResponse added in v0.2.0

type GetSeasonTypesFullResponse = operations.GetSeasonTypesResponse

type GetSeriesArtworksFullResponse added in v0.2.0

type GetSeriesArtworksFullResponse = operations.GetSeriesArtworksResponse

type GetSeriesArtworksRequest added in v0.2.0

type GetSeriesArtworksRequest = operations.GetSeriesArtworksRequest

type GetSeriesBaseBySlugFullResponse added in v0.2.0

type GetSeriesBaseBySlugFullResponse = operations.GetSeriesBaseBySlugResponse

type GetSeriesBaseBySlugRequest added in v0.2.0

type GetSeriesBaseBySlugRequest = operations.GetSeriesBaseBySlugRequest

type GetSeriesBaseFullResponse added in v0.2.0

type GetSeriesBaseFullResponse = operations.GetSeriesBaseResponse

type GetSeriesBaseRequest added in v0.2.0

type GetSeriesBaseRequest = operations.GetSeriesBaseRequest

type GetSeriesEpisodesFullResponse added in v0.2.0

type GetSeriesEpisodesFullResponse = operations.GetSeriesEpisodesResponse

type GetSeriesEpisodesRequest added in v0.2.0

type GetSeriesEpisodesRequest = operations.GetSeriesEpisodesRequest

type GetSeriesEpisodesResponseData added in v0.2.0

type GetSeriesEpisodesResponseData = operations.GetSeriesEpisodes200ApplicationJSONData

type GetSeriesExtendedFullResponse added in v0.2.0

type GetSeriesExtendedFullResponse = operations.GetSeriesExtendedResponse

type GetSeriesExtendedMeta added in v0.2.0

type GetSeriesExtendedMeta = operations.GetSeriesExtendedMeta

type GetSeriesExtendedRequest added in v0.2.0

type GetSeriesExtendedRequest = operations.GetSeriesExtendedRequest

type GetSeriesFilterFullResponse added in v0.2.0

type GetSeriesFilterFullResponse = operations.GetSeriesFilterResponse

type GetSeriesFilterGenre added in v0.2.1

type GetSeriesFilterGenre = operations.GetSeriesFilterGenre

type GetSeriesFilterRequest added in v0.2.0

type GetSeriesFilterRequest = operations.GetSeriesFilterRequest

type GetSeriesFilterSort added in v0.2.0

type GetSeriesFilterSort = operations.GetSeriesFilterSort

type GetSeriesFilterSortType added in v0.2.0

type GetSeriesFilterSortType = operations.GetSeriesFilterSortType

type GetSeriesFilterStatus added in v0.2.1

type GetSeriesFilterStatus = operations.GetSeriesFilterStatus

type GetSeriesNextAiredFullResponse added in v0.2.0

type GetSeriesNextAiredFullResponse = operations.GetSeriesNextAiredResponse

type GetSeriesNextAiredRequest added in v0.2.0

type GetSeriesNextAiredRequest = operations.GetSeriesNextAiredRequest

type GetSeriesSeasonEpisodesTranslatedFullResponse added in v0.2.0

type GetSeriesSeasonEpisodesTranslatedFullResponse = operations.GetSeriesSeasonEpisodesTranslatedResponse

type GetSeriesSeasonEpisodesTranslatedRequest added in v0.2.0

type GetSeriesSeasonEpisodesTranslatedRequest = operations.GetSeriesSeasonEpisodesTranslatedRequest

type GetSeriesSeasonEpisodesTranslatedResponseData added in v0.2.0

type GetSeriesSeasonEpisodesTranslatedResponseData = operations.GetSeriesSeasonEpisodesTranslated200ApplicationJSONData

type GetSeriesTranslationFullResponse added in v0.2.0

type GetSeriesTranslationFullResponse = operations.GetSeriesTranslationResponse

type GetSeriesTranslationRequest added in v0.2.0

type GetSeriesTranslationRequest = operations.GetSeriesTranslationRequest

type GetUserFavoritesFullResponse added in v0.2.0

type GetUserFavoritesFullResponse = operations.GetUserFavoritesResponse

type GetUserInfoByIDFullResponse added in v0.2.0

type GetUserInfoByIDFullResponse = operations.GetUserInfoByIDResponse

type GetUserInfoByIDRequest added in v0.2.0

type GetUserInfoByIDRequest = operations.GetUserInfoByIDRequest

type GetUserInfoByIDResponse added in v0.2.0

type GetUserInfoByIDResponse = operations.GetUserInfoByID200ApplicationJSON

type GetUserInfoFullResponse added in v0.2.0

type GetUserInfoFullResponse = operations.GetUserInfoResponse

type PostLoginFullResponse added in v0.2.0

type PostLoginFullResponse = operations.PostLoginResponse

type PostLoginRequestBody added in v0.2.0

type PostLoginRequestBody = operations.PostLoginRequestBody

type PostLoginResponseData added in v0.2.0

type PostLoginResponseData = operations.PostLogin200ApplicationJSONData

type UpdatesAction added in v0.2.0

type UpdatesAction = operations.UpdatesAction

type UpdatesFullResponse added in v0.2.0

type UpdatesFullResponse = operations.UpdatesResponse

type UpdatesRequest added in v0.2.0

type UpdatesRequest = operations.UpdatesRequest

type UpdatesType added in v0.2.0

type UpdatesType = operations.UpdatesType

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL