/** * Emil PublicAPI * The Emil Public API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; import { GetBookingFunnelResponseClass } from '../models'; /** * BookingFunnelsApi - axios parameter creator * @export */ export declare const BookingFunnelsApiAxiosParamCreator: (configuration?: Configuration) => { /** * Retrieves the details of the booking funnel that was previously created. Supply the unique booking funnel code that was returned when you created it and Emil Api will return the corresponding booking funnel information. * @summary Retrieve the booking funnel * @param {string} code Unique identifier for the object. * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ getBookingFunnel: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise; }; /** * BookingFunnelsApi - functional programming interface * @export */ export declare const BookingFunnelsApiFp: (configuration?: Configuration) => { /** * Retrieves the details of the booking funnel that was previously created. Supply the unique booking funnel code that was returned when you created it and Emil Api will return the corresponding booking funnel information. * @summary Retrieve the booking funnel * @param {string} code Unique identifier for the object. * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ getBookingFunnel(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * BookingFunnelsApi - factory interface * @export */ export declare const BookingFunnelsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * Retrieves the details of the booking funnel that was previously created. Supply the unique booking funnel code that was returned when you created it and Emil Api will return the corresponding booking funnel information. * @summary Retrieve the booking funnel * @param {string} code Unique identifier for the object. * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ getBookingFunnel(code: string, authorization?: string, options?: any): AxiosPromise; }; /** * Request parameters for getBookingFunnel operation in BookingFunnelsApi. * @export * @interface BookingFunnelsApiGetBookingFunnelRequest */ export interface BookingFunnelsApiGetBookingFunnelRequest { /** * Unique identifier for the object. * @type {string} * @memberof BookingFunnelsApiGetBookingFunnel */ readonly code: string; /** * Bearer Token * @type {string} * @memberof BookingFunnelsApiGetBookingFunnel */ readonly authorization?: string; } /** * BookingFunnelsApi - object-oriented interface * @export * @class BookingFunnelsApi * @extends {BaseAPI} */ export declare class BookingFunnelsApi extends BaseAPI { /** * Retrieves the details of the booking funnel that was previously created. Supply the unique booking funnel code that was returned when you created it and Emil Api will return the corresponding booking funnel information. * @summary Retrieve the booking funnel * @param {BookingFunnelsApiGetBookingFunnelRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof BookingFunnelsApi */ getBookingFunnel(requestParameters: BookingFunnelsApiGetBookingFunnelRequest, options?: AxiosRequestConfig): Promise>; }