/** * EMIL Tenant Service * The EMIL TenantService 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 { GetSettingsResponseClass } from '../models'; /** * SettingsApi - axios parameter creator * @export */ export declare const SettingsApiAxiosParamCreator: (configuration?: Configuration) => { /** * Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information. **Required Permissions** \"tenant-management.tenants.view\" * @summary Retrieve the settings * @param {string} keys * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ getTenantSettings: (keys: string, authorization?: string, options?: AxiosRequestConfig) => Promise; }; /** * SettingsApi - functional programming interface * @export */ export declare const SettingsApiFp: (configuration?: Configuration) => { /** * Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information. **Required Permissions** \"tenant-management.tenants.view\" * @summary Retrieve the settings * @param {string} keys * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ getTenantSettings(keys: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * SettingsApi - factory interface * @export */ export declare const SettingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information. **Required Permissions** \"tenant-management.tenants.view\" * @summary Retrieve the settings * @param {string} keys * @param {string} [authorization] Bearer Token * @param {*} [options] Override http request option. * @throws {RequiredError} */ getTenantSettings(keys: string, authorization?: string, options?: any): AxiosPromise; }; /** * Request parameters for getTenantSettings operation in SettingsApi. * @export * @interface SettingsApiGetTenantSettingsRequest */ export interface SettingsApiGetTenantSettingsRequest { /** * * @type {string} * @memberof SettingsApiGetTenantSettings */ readonly keys: string; /** * Bearer Token * @type {string} * @memberof SettingsApiGetTenantSettings */ readonly authorization?: string; } /** * SettingsApi - object-oriented interface * @export * @class SettingsApi * @extends {BaseAPI} */ export declare class SettingsApi extends BaseAPI { /** * Retrieves the details of the settings that was previously created. Supply the unique settings code that was returned when you created it and Emil Api will return the corresponding settings information. **Required Permissions** \"tenant-management.tenants.view\" * @summary Retrieve the settings * @param {SettingsApiGetTenantSettingsRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof SettingsApi */ getTenantSettings(requestParameters: SettingsApiGetTenantSettingsRequest, options?: AxiosRequestConfig): Promise>; }