tvdb

package module
v0.3.0 Latest Latest
Warning

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

Go to latest
Published: Nov 16, 2023 License: MIT Imports: 9 Imported by: 2

README

dashotv/tvdb

Golang TVDB Client (Alpha)

Build Status GoDoc Go Report Card License

Generated Code

This package is generated from the TVDB OpenAPI specification using the Speakeasy code generator.

The generated code is in the openapi directory, and I've written scripts to wrap it with a more convenient interface.

See the Generation section below for more information.

[!NOTE] I have needed to make a few tweaks to the openapi spec to get things to work correctly in go.

Additional Documentation

The Speakeasy generator also generates documentation for the API. This is available in the openapi directory's README.md and the docs directory.

Status

The code is currently in alpha, and is not ready for production use. It is being used by the DashoTV project, but is not yet stable.

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, token)

If you don't already have a token, you can authenticate with your apikey using the Login method:

// Authenticate with your API key. This will return a client with the
// token already configured.
client, err := tvdb.Login(apikey)
if err != nil {
    // handle error
}
client.Token // the token

[!IMPORTANT] 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 create a client with your apikey and token:

client := tvdb.New(apikey, token)

Development

Create 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:
  General:
    generate            Generate code from openapi.yml spec
    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.

Generation

To update the generated code, ensure you have the dependencies installed:

  • Speakeasy CLI - See Speakeasy for more information.
  • Ruby - See Ruby for more information.

Then run:

make generate

This will run the scripts/generate.sh script, which will:

  • Run the speakeasy cli generator
  • Rearrange the generated code
  • Run a ruby script to build the wrapper client code
Notes

There are several operations on the api that are disabled (this is handled in the ruby script). These are operations that require additional priveleges (actions on behalf of the user) or that don't work correctly. These are configured as an array in the ruby script.

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 Action added in v0.3.0

type Action = operations.Action

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.Meta) (*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.QueryParamMeta, 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

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.GetSeriesExtendedQueryParamMeta, 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.Action, page *int64, type_ *operations.Type) (*UpdatesResponse, error)

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

type CreateUserFavoritesRaw added in v0.3.0

type CreateUserFavoritesRaw = operations.CreateUserFavoritesResponse

request, response

type Data added in v0.3.0

type Data = operations.Data

type Genre added in v0.3.0

type Genre = operations.Genre

type GetAllArtworkStatusesRaw added in v0.3.0

type GetAllArtworkStatusesRaw = operations.GetAllArtworkStatusesResponse

type GetAllArtworkTypesRaw added in v0.3.0

type GetAllArtworkTypesRaw = operations.GetAllArtworkTypesResponse

type GetAllAwardsRaw added in v0.3.0

type GetAllAwardsRaw = operations.GetAllAwardsResponse

type GetAllAwardsResponse

type GetAllAwardsResponse = operations.GetAllAwardsResponseBody

type GetAllCompaniesRaw added in v0.3.0

type GetAllCompaniesRaw = operations.GetAllCompaniesResponse

type GetAllCompaniesRequest added in v0.2.0

type GetAllCompaniesRequest = operations.GetAllCompaniesRequest

type GetAllContentRatingsRaw added in v0.3.0

type GetAllContentRatingsRaw = operations.GetAllContentRatingsResponse

type GetAllCountriesRaw added in v0.3.0

type GetAllCountriesRaw = operations.GetAllCountriesResponse

type GetAllEpisodesRaw added in v0.3.0

type GetAllEpisodesRaw = operations.GetAllEpisodesResponse

type GetAllEpisodesRequest added in v0.2.0

type GetAllEpisodesRequest = operations.GetAllEpisodesRequest

type GetAllEpisodesResponse

type GetAllEpisodesResponse = operations.GetAllEpisodesResponseBody

type GetAllGendersRaw added in v0.3.0

type GetAllGendersRaw = operations.GetAllGendersResponse

type GetAllGendersResponse

type GetAllGendersResponse = operations.GetAllGendersResponseBody

type GetAllGenresRaw added in v0.3.0

type GetAllGenresRaw = operations.GetAllGenresResponse

type GetAllGenresResponse

type GetAllGenresResponse = operations.GetAllGenresResponseBody

type GetAllInspirationTypesRaw added in v0.3.0

type GetAllInspirationTypesRaw = operations.GetAllInspirationTypesResponse

type GetAllLanguagesRaw added in v0.3.0

type GetAllLanguagesRaw = operations.GetAllLanguagesResponse

type GetAllListsRaw added in v0.3.0

type GetAllListsRaw = operations.GetAllListsResponse

type GetAllListsRequest added in v0.2.0

type GetAllListsRequest = operations.GetAllListsRequest

type GetAllListsResponse

type GetAllListsResponse = operations.GetAllListsResponseBody

type GetAllMovieRaw added in v0.3.0

type GetAllMovieRaw = operations.GetAllMovieResponse

type GetAllMovieRequest added in v0.2.0

type GetAllMovieRequest = operations.GetAllMovieRequest

type GetAllMovieResponse

type GetAllMovieResponse = operations.GetAllMovieResponseBody

type GetAllMovieStatusesRaw added in v0.3.0

type GetAllMovieStatusesRaw = operations.GetAllMovieStatusesResponse

type GetAllPeopleRaw added in v0.3.0

type GetAllPeopleRaw = operations.GetAllPeopleResponse

type GetAllPeopleRequest added in v0.2.0

type GetAllPeopleRequest = operations.GetAllPeopleRequest

type GetAllPeopleResponse

type GetAllPeopleResponse = operations.GetAllPeopleResponseBody

type GetAllPeopleTypesRaw added in v0.3.0

type GetAllPeopleTypesRaw = operations.GetAllPeopleTypesResponse

type GetAllSeasonsRaw added in v0.3.0

type GetAllSeasonsRaw = operations.GetAllSeasonsResponse

type GetAllSeasonsRequest added in v0.2.0

type GetAllSeasonsRequest = operations.GetAllSeasonsRequest

type GetAllSeasonsResponse

type GetAllSeasonsResponse = operations.GetAllSeasonsResponseBody

type GetAllSeriesRaw added in v0.3.0

type GetAllSeriesRaw = operations.GetAllSeriesResponse

type GetAllSeriesRequest added in v0.2.0

type GetAllSeriesRequest = operations.GetAllSeriesRequest

type GetAllSeriesResponse

type GetAllSeriesResponse = operations.GetAllSeriesResponseBody

type GetAllSeriesStatusesRaw added in v0.3.0

type GetAllSeriesStatusesRaw = operations.GetAllSeriesStatusesResponse

type GetAllSourceTypesRaw added in v0.3.0

type GetAllSourceTypesRaw = operations.GetAllSourceTypesResponse

type GetArtworkBaseRaw added in v0.3.0

type GetArtworkBaseRaw = operations.GetArtworkBaseResponse

type GetArtworkBaseRequest added in v0.2.0

type GetArtworkBaseRequest = operations.GetArtworkBaseRequest

type GetArtworkBaseResponse

type GetArtworkBaseResponse = operations.GetArtworkBaseResponseBody

type GetArtworkExtendedRaw added in v0.3.0

type GetArtworkExtendedRaw = operations.GetArtworkExtendedResponse

type GetArtworkExtendedRequest added in v0.2.0

type GetArtworkExtendedRequest = operations.GetArtworkExtendedRequest

type GetAwardCategoryExtendedRaw added in v0.3.0

type GetAwardCategoryExtendedRaw = operations.GetAwardCategoryExtendedResponse

type GetAwardCategoryExtendedRequest added in v0.2.0

type GetAwardCategoryExtendedRequest = operations.GetAwardCategoryExtendedRequest

type GetAwardCategoryRaw added in v0.3.0

type GetAwardCategoryRaw = operations.GetAwardCategoryResponse

type GetAwardCategoryRequest added in v0.2.0

type GetAwardCategoryRequest = operations.GetAwardCategoryRequest

type GetAwardExtendedRaw added in v0.3.0

type GetAwardExtendedRaw = operations.GetAwardExtendedResponse

type GetAwardExtendedRequest added in v0.2.0

type GetAwardExtendedRequest = operations.GetAwardExtendedRequest

type GetAwardRaw added in v0.3.0

type GetAwardRaw = operations.GetAwardResponse

type GetAwardRequest added in v0.2.0

type GetAwardRequest = operations.GetAwardRequest

type GetAwardResponse

type GetAwardResponse = operations.GetAwardResponseBody

type GetCharacterBaseRaw added in v0.3.0

type GetCharacterBaseRaw = operations.GetCharacterBaseResponse

type GetCharacterBaseRequest added in v0.2.0

type GetCharacterBaseRequest = operations.GetCharacterBaseRequest

type GetCompanyRaw added in v0.3.0

type GetCompanyRaw = operations.GetCompanyResponse

type GetCompanyRequest added in v0.2.0

type GetCompanyRequest = operations.GetCompanyRequest

type GetCompanyResponse

type GetCompanyResponse = operations.GetCompanyResponseBody

type GetCompanyTypesRaw added in v0.3.0

type GetCompanyTypesRaw = operations.GetCompanyTypesResponse

type GetEntityTypesRaw added in v0.3.0

type GetEntityTypesRaw = operations.GetEntityTypesResponse

type GetEntityTypesResponse

type GetEntityTypesResponse = operations.GetEntityTypesResponseBody

type GetEpisodeBaseRaw added in v0.3.0

type GetEpisodeBaseRaw = operations.GetEpisodeBaseResponse

type GetEpisodeBaseRequest added in v0.2.0

type GetEpisodeBaseRequest = operations.GetEpisodeBaseRequest

type GetEpisodeBaseResponse

type GetEpisodeBaseResponse = operations.GetEpisodeBaseResponseBody

type GetEpisodeExtendedRaw added in v0.3.0

type GetEpisodeExtendedRaw = operations.GetEpisodeExtendedResponse

type GetEpisodeExtendedRequest added in v0.2.0

type GetEpisodeExtendedRequest = operations.GetEpisodeExtendedRequest

type GetEpisodeTranslationRaw added in v0.3.0

type GetEpisodeTranslationRaw = operations.GetEpisodeTranslationResponse

type GetEpisodeTranslationRequest added in v0.2.0

type GetEpisodeTranslationRequest = operations.GetEpisodeTranslationRequest

type GetGenreBaseRaw added in v0.3.0

type GetGenreBaseRaw = operations.GetGenreBaseResponse

type GetGenreBaseRequest added in v0.2.0

type GetGenreBaseRequest = operations.GetGenreBaseRequest

type GetGenreBaseResponse

type GetGenreBaseResponse = operations.GetGenreBaseResponseBody

type GetListBySlugRaw added in v0.3.0

type GetListBySlugRaw = operations.GetListBySlugResponse

type GetListBySlugRequest added in v0.2.0

type GetListBySlugRequest = operations.GetListBySlugRequest

type GetListBySlugResponse

type GetListBySlugResponse = operations.GetListBySlugResponseBody

type GetListExtendedRaw added in v0.3.0

type GetListExtendedRaw = operations.GetListExtendedResponse

type GetListExtendedRequest added in v0.2.0

type GetListExtendedRequest = operations.GetListExtendedRequest

type GetListRaw added in v0.3.0

type GetListRaw = operations.GetListResponse

type GetListRequest added in v0.2.0

type GetListRequest = operations.GetListRequest

type GetListResponse

type GetListResponse = operations.GetListResponseBody

type GetListTranslationRaw added in v0.3.0

type GetListTranslationRaw = operations.GetListTranslationResponse

type GetListTranslationRequest added in v0.2.0

type GetListTranslationRequest = operations.GetListTranslationRequest

type GetMovieBaseBySlugRaw added in v0.3.0

type GetMovieBaseBySlugRaw = operations.GetMovieBaseBySlugResponse

type GetMovieBaseBySlugRequest added in v0.2.0

type GetMovieBaseBySlugRequest = operations.GetMovieBaseBySlugRequest

type GetMovieBaseRaw added in v0.3.0

type GetMovieBaseRaw = operations.GetMovieBaseResponse

type GetMovieBaseRequest added in v0.2.0

type GetMovieBaseRequest = operations.GetMovieBaseRequest

type GetMovieBaseResponse

type GetMovieBaseResponse = operations.GetMovieBaseResponseBody

type GetMovieExtendedRaw added in v0.3.0

type GetMovieExtendedRaw = operations.GetMovieExtendedResponse

type GetMovieExtendedRequest added in v0.2.0

type GetMovieExtendedRequest = operations.GetMovieExtendedRequest

type GetMovieTranslationRaw added in v0.3.0

type GetMovieTranslationRaw = operations.GetMovieTranslationResponse

type GetMovieTranslationRequest added in v0.2.0

type GetMovieTranslationRequest = operations.GetMovieTranslationRequest

type GetMoviesFilterRaw added in v0.3.0

type GetMoviesFilterRaw = operations.GetMoviesFilterResponse

type GetMoviesFilterRequest added in v0.2.0

type GetMoviesFilterRequest = operations.GetMoviesFilterRequest

type GetPeopleBaseRaw added in v0.3.0

type GetPeopleBaseRaw = operations.GetPeopleBaseResponse

type GetPeopleBaseRequest added in v0.2.0

type GetPeopleBaseRequest = operations.GetPeopleBaseRequest

type GetPeopleBaseResponse

type GetPeopleBaseResponse = operations.GetPeopleBaseResponseBody

type GetPeopleExtendedQueryParamMeta added in v0.3.0

type GetPeopleExtendedQueryParamMeta = operations.GetPeopleExtendedQueryParamMeta

type GetPeopleExtendedRaw added in v0.3.0

type GetPeopleExtendedRaw = operations.GetPeopleExtendedResponse

type GetPeopleExtendedRequest added in v0.2.0

type GetPeopleExtendedRequest = operations.GetPeopleExtendedRequest

type GetPeopleTranslationRaw added in v0.3.0

type GetPeopleTranslationRaw = operations.GetPeopleTranslationResponse

type GetPeopleTranslationRequest added in v0.2.0

type GetPeopleTranslationRequest = operations.GetPeopleTranslationRequest

type GetSearchResultsByRemoteIDRaw added in v0.3.0

type GetSearchResultsByRemoteIDRaw = operations.GetSearchResultsByRemoteIDResponse

type GetSearchResultsByRemoteIDRequest added in v0.2.0

type GetSearchResultsByRemoteIDRequest = operations.GetSearchResultsByRemoteIDRequest

type GetSearchResultsByRemoteIDResponse added in v0.2.0

type GetSearchResultsByRemoteIDResponse = operations.GetSearchResultsByRemoteIDResponseBody

type GetSearchResultsRaw added in v0.3.0

type GetSearchResultsRaw = operations.GetSearchResultsResponse

type GetSearchResultsRequest added in v0.2.0

type GetSearchResultsRequest = operations.GetSearchResultsRequest

type GetSeasonBaseRaw added in v0.3.0

type GetSeasonBaseRaw = operations.GetSeasonBaseResponse

type GetSeasonBaseRequest added in v0.2.0

type GetSeasonBaseRequest = operations.GetSeasonBaseRequest

type GetSeasonBaseResponse

type GetSeasonBaseResponse = operations.GetSeasonBaseResponseBody

type GetSeasonExtendedRaw added in v0.3.0

type GetSeasonExtendedRaw = operations.GetSeasonExtendedResponse

type GetSeasonExtendedRequest added in v0.2.0

type GetSeasonExtendedRequest = operations.GetSeasonExtendedRequest

type GetSeasonTranslationRaw added in v0.3.0

type GetSeasonTranslationRaw = operations.GetSeasonTranslationResponse

type GetSeasonTranslationRequest added in v0.2.0

type GetSeasonTranslationRequest = operations.GetSeasonTranslationRequest

type GetSeasonTypesRaw added in v0.3.0

type GetSeasonTypesRaw = operations.GetSeasonTypesResponse

type GetSeasonTypesResponse

type GetSeasonTypesResponse = operations.GetSeasonTypesResponseBody

type GetSeriesArtworksRaw added in v0.3.0

type GetSeriesArtworksRaw = operations.GetSeriesArtworksResponse

type GetSeriesArtworksRequest added in v0.2.0

type GetSeriesArtworksRequest = operations.GetSeriesArtworksRequest

type GetSeriesBaseBySlugRaw added in v0.3.0

type GetSeriesBaseBySlugRaw = operations.GetSeriesBaseBySlugResponse

type GetSeriesBaseBySlugRequest added in v0.2.0

type GetSeriesBaseBySlugRequest = operations.GetSeriesBaseBySlugRequest

type GetSeriesBaseRaw added in v0.3.0

type GetSeriesBaseRaw = operations.GetSeriesBaseResponse

type GetSeriesBaseRequest added in v0.2.0

type GetSeriesBaseRequest = operations.GetSeriesBaseRequest

type GetSeriesBaseResponse

type GetSeriesBaseResponse = operations.GetSeriesBaseResponseBody

type GetSeriesEpisodesData added in v0.3.0

type GetSeriesEpisodesData = operations.GetSeriesEpisodesData

type GetSeriesEpisodesRaw added in v0.3.0

type GetSeriesEpisodesRaw = operations.GetSeriesEpisodesResponse

type GetSeriesEpisodesRequest added in v0.2.0

type GetSeriesEpisodesRequest = operations.GetSeriesEpisodesRequest

type GetSeriesExtendedQueryParamMeta added in v0.3.0

type GetSeriesExtendedQueryParamMeta = operations.GetSeriesExtendedQueryParamMeta

type GetSeriesExtendedRaw added in v0.3.0

type GetSeriesExtendedRaw = operations.GetSeriesExtendedResponse

type GetSeriesExtendedRequest added in v0.2.0

type GetSeriesExtendedRequest = operations.GetSeriesExtendedRequest

type GetSeriesFilterRaw added in v0.3.0

type GetSeriesFilterRaw = operations.GetSeriesFilterResponse

type GetSeriesFilterRequest added in v0.2.0

type GetSeriesFilterRequest = operations.GetSeriesFilterRequest

type GetSeriesNextAiredRaw added in v0.3.0

type GetSeriesNextAiredRaw = operations.GetSeriesNextAiredResponse

type GetSeriesNextAiredRequest added in v0.2.0

type GetSeriesNextAiredRequest = operations.GetSeriesNextAiredRequest

type GetSeriesSeasonEpisodesTranslatedData added in v0.3.0

type GetSeriesSeasonEpisodesTranslatedData = operations.GetSeriesSeasonEpisodesTranslatedData

type GetSeriesSeasonEpisodesTranslatedRaw added in v0.3.0

type GetSeriesSeasonEpisodesTranslatedRaw = operations.GetSeriesSeasonEpisodesTranslatedResponse

type GetSeriesSeasonEpisodesTranslatedRequest added in v0.2.0

type GetSeriesSeasonEpisodesTranslatedRequest = operations.GetSeriesSeasonEpisodesTranslatedRequest

type GetSeriesTranslationRaw added in v0.3.0

type GetSeriesTranslationRaw = operations.GetSeriesTranslationResponse

type GetSeriesTranslationRequest added in v0.2.0

type GetSeriesTranslationRequest = operations.GetSeriesTranslationRequest

type GetUserFavoritesRaw added in v0.3.0

type GetUserFavoritesRaw = operations.GetUserFavoritesResponse

type GetUserInfoByIDRaw added in v0.3.0

type GetUserInfoByIDRaw = operations.GetUserInfoByIDResponse

type GetUserInfoByIDRequest added in v0.2.0

type GetUserInfoByIDRequest = operations.GetUserInfoByIDRequest

type GetUserInfoByIDResponse added in v0.2.0

type GetUserInfoByIDResponse = operations.GetUserInfoByIDResponseBody

type GetUserInfoRaw added in v0.3.0

type GetUserInfoRaw = operations.GetUserInfoResponse

type GetUserInfoResponse

type GetUserInfoResponse = operations.GetUserInfoResponseBody

type Meta added in v0.3.0

type Meta = operations.Meta

type PostLoginRaw added in v0.3.0

type PostLoginRaw = operations.PostLoginResponse

type PostLoginRequestBody added in v0.2.0

type PostLoginRequestBody = operations.PostLoginRequestBody

type PostLoginResponse

type PostLoginResponse = operations.PostLoginResponseBody

type QueryParamGenre added in v0.3.0

type QueryParamGenre = operations.QueryParamGenre

type QueryParamMeta added in v0.3.0

type QueryParamMeta = operations.QueryParamMeta

type QueryParamSort added in v0.3.0

type QueryParamSort = operations.QueryParamSort

type QueryParamStatus added in v0.3.0

type QueryParamStatus = operations.QueryParamStatus

type Sort added in v0.3.0

type Sort = operations.Sort

type SortType added in v0.3.0

type SortType = operations.SortType

type Status

type Status = operations.Status

type Type added in v0.3.0

type Type = operations.Type

type UpdatesRaw added in v0.3.0

type UpdatesRaw = operations.UpdatesResponse

type UpdatesRequest added in v0.2.0

type UpdatesRequest = operations.UpdatesRequest

type UpdatesResponse

type UpdatesResponse = operations.UpdatesResponseBody

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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