/** * TwitchGameApi * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { AxiosResponse, AxiosInstance, AxiosRequestConfig } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; /** * CurrencyApi - axios parameter creator * @export */ export declare const CurrencyApiAxiosParamCreator: (configuration?: Configuration) => { /** * * @param {string} card * @param {*} [options] Override http request option. * @throws {RequiredError} */ currencyCardCardPost: (card: string, options?: AxiosRequestConfig) => Promise; /** * * @param {*} [options] Override http request option. * @throws {RequiredError} */ currencyCardGet: (options?: AxiosRequestConfig) => Promise; /** * * @param {*} [options] Override http request option. * @throws {RequiredError} */ currencyCardsGet: (options?: AxiosRequestConfig) => Promise; /** * * @param {*} [options] Override http request option. * @throws {RequiredError} */ currencyCreditsGet: (options?: AxiosRequestConfig) => Promise; }; /** * CurrencyApi - functional programming interface * @export */ export declare const CurrencyApiFp: (configuration?: Configuration) => { /** * * @param {string} card * @param {*} [options] Override http request option. * @throws {RequiredError} */ currencyCardCardPost(card: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise>>; /** * * @param {*} [options] Override http request option. * @throws {RequiredError} */ currencyCardGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise>>; /** * * @param {*} [options] Override http request option. * @throws {RequiredError} */ currencyCardsGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise>>>; /** * * @param {*} [options] Override http request option. * @throws {RequiredError} */ currencyCreditsGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise>>; }; /** * CurrencyApi - factory interface * @export */ export declare const CurrencyApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * * @param {string} card * @param {*} [options] Override http request option. * @throws {RequiredError} */ currencyCardCardPost(card: string, options?: AxiosRequestConfig): Promise>; /** * * @param {*} [options] Override http request option. * @throws {RequiredError} */ currencyCardGet(options?: AxiosRequestConfig): Promise>; /** * * @param {*} [options] Override http request option. * @throws {RequiredError} */ currencyCardsGet(options?: AxiosRequestConfig): Promise>>; /** * * @param {*} [options] Override http request option. * @throws {RequiredError} */ currencyCreditsGet(options?: AxiosRequestConfig): Promise>; }; /** * CurrencyApi - object-oriented interface * @export * @class CurrencyApi * @extends {BaseAPI} */ export declare class CurrencyApi extends BaseAPI { /** * * @param {string} card * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof CurrencyApi */ currencyCardCardPost(card: string, options?: AxiosRequestConfig): Promise>; /** * * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof CurrencyApi */ currencyCardGet(options?: AxiosRequestConfig): Promise>; /** * * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof CurrencyApi */ currencyCardsGet(options?: AxiosRequestConfig): Promise>>; /** * * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof CurrencyApi */ currencyCreditsGet(options?: AxiosRequestConfig): Promise>; }