/**
 * Backbone Organization Structure API
 *  - alpha: Currently developed API version. Subject to major changes. - beta: A semi-stable early access version. New features can be added. Breaking changes are possible. - stable: The API is recommended for use in production.  [Changelog](https://organization-structure-api.steve.niceshops.com/v2/docs/changelog.html)  All data is transferred in UTF-8 encoding.\\ The API uses stateless HTTP. No cookies have to be kept.\\ Authentication via OAuth2 client credentials flow.  [Privacy Policy](https://www.niceshops.com/en/dienstleistungen/data-privacy-policy)  [Backbone Organization Structure API PHP client @Packagist](https://packagist.org/packages/datenkraft/bb-organization-structure-api-php-client)
 *
 * The version of the OpenAPI document: v2.beta
 *
 *
 * 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, AxiosRequestConfig } from 'axios';
import { RequestArgs, BaseAPI } from '../base';
import { GetProjectCollectionResponse } from '../models';
import { NewProject } from '../models';
import { Project } from '../models';
/**
 * ProjectApi - axios parameter creator
 * @export
 */
export declare const ProjectApiAxiosParamCreator: (configuration?: Configuration) => {
    /**
     * Delete a Project by projectId
     * @summary Delete Project by projectId
     * @param {string} projectId Project Id
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    deleteProject: (projectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
    /**
     * Get a Project by projectId
     * @summary Get a Project by projectId
     * @param {string} projectId Project Id
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    getProject: (projectId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
    /**
     * Get a list of Projects
     * @summary Get a list of Projects
     * @param {number} [page] The page to read. Default is the first page.
     * @param {number} [pageSize] The maximum size per page is 100. Default is 100.
     * @param {'default' | 'totalCount'} [paginationMode] The paginationMode to use: - default: The total number of items in the collection will not be calculated. - totalCount: The total number of items in the collection will be calculated. This can mean loss of performance.
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    getProjectCollection: (page?: number, pageSize?: number, paginationMode?: 'default' | 'totalCount', options?: AxiosRequestConfig) => Promise<RequestArgs>;
    /**
     * Update one or more fields of a Project
     * @summary Update a Project
     * @param {string} projectId Project Id
     * @param {NewProject} newProject
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    patchProject: (projectId: string, newProject: NewProject, options?: AxiosRequestConfig) => Promise<RequestArgs>;
    /**
     * Post a new Project
     * @summary Post a new Project
     * @param {NewProject} newProject
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    postProject: (newProject: NewProject, options?: AxiosRequestConfig) => Promise<RequestArgs>;
};
/**
 * ProjectApi - functional programming interface
 * @export
 */
export declare const ProjectApiFp: (configuration?: Configuration) => {
    /**
     * Delete a Project by projectId
     * @summary Delete Project by projectId
     * @param {string} projectId Project Id
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    deleteProject(projectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
    /**
     * Get a Project by projectId
     * @summary Get a Project by projectId
     * @param {string} projectId Project Id
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    getProject(projectId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Project>>;
    /**
     * Get a list of Projects
     * @summary Get a list of Projects
     * @param {number} [page] The page to read. Default is the first page.
     * @param {number} [pageSize] The maximum size per page is 100. Default is 100.
     * @param {'default' | 'totalCount'} [paginationMode] The paginationMode to use: - default: The total number of items in the collection will not be calculated. - totalCount: The total number of items in the collection will be calculated. This can mean loss of performance.
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    getProjectCollection(page?: number, pageSize?: number, paginationMode?: 'default' | 'totalCount', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetProjectCollectionResponse>>;
    /**
     * Update one or more fields of a Project
     * @summary Update a Project
     * @param {string} projectId Project Id
     * @param {NewProject} newProject
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    patchProject(projectId: string, newProject: NewProject, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Project>>;
    /**
     * Post a new Project
     * @summary Post a new Project
     * @param {NewProject} newProject
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    postProject(newProject: NewProject, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Project>>;
};
/**
 * ProjectApi - factory interface
 * @export
 */
export declare const ProjectApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
    /**
     * Delete a Project by projectId
     * @summary Delete Project by projectId
     * @param {string} projectId Project Id
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    deleteProject(projectId: string, options?: any): AxiosPromise<void>;
    /**
     * Get a Project by projectId
     * @summary Get a Project by projectId
     * @param {string} projectId Project Id
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    getProject(projectId: string, options?: any): AxiosPromise<Project>;
    /**
     * Get a list of Projects
     * @summary Get a list of Projects
     * @param {number} [page] The page to read. Default is the first page.
     * @param {number} [pageSize] The maximum size per page is 100. Default is 100.
     * @param {'default' | 'totalCount'} [paginationMode] The paginationMode to use: - default: The total number of items in the collection will not be calculated. - totalCount: The total number of items in the collection will be calculated. This can mean loss of performance.
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    getProjectCollection(page?: number, pageSize?: number, paginationMode?: 'default' | 'totalCount', options?: any): AxiosPromise<GetProjectCollectionResponse>;
    /**
     * Update one or more fields of a Project
     * @summary Update a Project
     * @param {string} projectId Project Id
     * @param {NewProject} newProject
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    patchProject(projectId: string, newProject: NewProject, options?: any): AxiosPromise<Project>;
    /**
     * Post a new Project
     * @summary Post a new Project
     * @param {NewProject} newProject
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    postProject(newProject: NewProject, options?: any): AxiosPromise<Project>;
};
/**
 * ProjectApi - interface
 * @export
 * @interface ProjectApi
 */
export interface ProjectApiInterface {
    /**
     * Delete a Project by projectId
     * @summary Delete Project by projectId
     * @param {string} projectId Project Id
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof ProjectApiInterface
     */
    deleteProject(projectId: string, options?: AxiosRequestConfig): AxiosPromise<void>;
    /**
     * Get a Project by projectId
     * @summary Get a Project by projectId
     * @param {string} projectId Project Id
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof ProjectApiInterface
     */
    getProject(projectId: string, options?: AxiosRequestConfig): AxiosPromise<Project>;
    /**
     * Get a list of Projects
     * @summary Get a list of Projects
     * @param {number} [page] The page to read. Default is the first page.
     * @param {number} [pageSize] The maximum size per page is 100. Default is 100.
     * @param {'default' | 'totalCount'} [paginationMode] The paginationMode to use: - default: The total number of items in the collection will not be calculated. - totalCount: The total number of items in the collection will be calculated. This can mean loss of performance.
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof ProjectApiInterface
     */
    getProjectCollection(page?: number, pageSize?: number, paginationMode?: 'default' | 'totalCount', options?: AxiosRequestConfig): AxiosPromise<GetProjectCollectionResponse>;
    /**
     * Update one or more fields of a Project
     * @summary Update a Project
     * @param {string} projectId Project Id
     * @param {NewProject} newProject
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof ProjectApiInterface
     */
    patchProject(projectId: string, newProject: NewProject, options?: AxiosRequestConfig): AxiosPromise<Project>;
    /**
     * Post a new Project
     * @summary Post a new Project
     * @param {NewProject} newProject
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof ProjectApiInterface
     */
    postProject(newProject: NewProject, options?: AxiosRequestConfig): AxiosPromise<Project>;
}
/**
 * ProjectApi - object-oriented interface
 * @export
 * @class ProjectApi
 * @extends {BaseAPI}
 */
export declare class ProjectApi extends BaseAPI implements ProjectApiInterface {
    /**
     * Delete a Project by projectId
     * @summary Delete Project by projectId
     * @param {string} projectId Project Id
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof ProjectApi
     */
    deleteProject(projectId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
    /**
     * Get a Project by projectId
     * @summary Get a Project by projectId
     * @param {string} projectId Project Id
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof ProjectApi
     */
    getProject(projectId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
    /**
     * Get a list of Projects
     * @summary Get a list of Projects
     * @param {number} [page] The page to read. Default is the first page.
     * @param {number} [pageSize] The maximum size per page is 100. Default is 100.
     * @param {'default' | 'totalCount'} [paginationMode] The paginationMode to use: - default: The total number of items in the collection will not be calculated. - totalCount: The total number of items in the collection will be calculated. This can mean loss of performance.
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof ProjectApi
     */
    getProjectCollection(page?: number, pageSize?: number, paginationMode?: 'default' | 'totalCount', options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetProjectCollectionResponse, any>>;
    /**
     * Update one or more fields of a Project
     * @summary Update a Project
     * @param {string} projectId Project Id
     * @param {NewProject} newProject
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof ProjectApi
     */
    patchProject(projectId: string, newProject: NewProject, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
    /**
     * Post a new Project
     * @summary Post a new Project
     * @param {NewProject} newProject
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof ProjectApi
     */
    postProject(newProject: NewProject, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Project, any>>;
}
