/** * Iyzico API * Iyzico Open API Declaration * * The version of the OpenAPI document: 0.1.15 * Contact: oguz.ozcan@vennyx.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Configuration } from '../configuration'; import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; import { type RequestArgs, BaseAPI } from '../base'; import type { PaymentTest200Response } from '../models'; /** * TestingApi - axios parameter creator * @export */ export declare const TestingApiAxiosParamCreator: (configuration?: Configuration) => { /** * Iyzico API Test endpoint * @summary API Test * @param {*} [options] Override http request option. * @throws {RequiredError} */ paymentTest: (options?: RawAxiosRequestConfig) => Promise; }; /** * TestingApi - functional programming interface * @export */ export declare const TestingApiFp: (configuration?: Configuration) => { /** * Iyzico API Test endpoint * @summary API Test * @param {*} [options] Override http request option. * @throws {RequiredError} */ paymentTest(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * TestingApi - factory interface * @export */ export declare const TestingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * Iyzico API Test endpoint * @summary API Test * @param {*} [options] Override http request option. * @throws {RequiredError} */ paymentTest(options?: any): AxiosPromise; }; /** * TestingApi - interface * @export * @interface TestingApi */ export interface TestingApiInterface { /** * Iyzico API Test endpoint * @summary API Test * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof TestingApiInterface */ paymentTest(options?: RawAxiosRequestConfig): AxiosPromise; } /** * TestingApi - object-oriented interface * @export * @class TestingApi * @extends {BaseAPI} */ export declare class TestingApi extends BaseAPI implements TestingApiInterface { /** * Iyzico API Test endpoint * @summary API Test * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof TestingApi */ paymentTest(options?: RawAxiosRequestConfig): Promise>; }