/** * 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 { FilterNamedRangeResponseClass } from '../models'; /** * NamedRangesApi - axios parameter creator * @export */ export declare const NamedRangesApiAxiosParamCreator: (configuration?: Configuration) => { /** * Returns a list of named range file records you have previously created. The named range file records are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. * @summary List named range file records * @param {string} productSlug A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id. * @param {string} name Name of Named Range. * @param {string} [authorization] Bearer Token * @param {number} [productVersionId] The product version id of the product version to be used for the lead. The product version id will be validated if the \'validate\' flag is set to true. * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. * @param {string} [filters] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time. * @param {string} [search] Search the list by any field. * @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC. * @param {*} [options] Override http request option. * @throws {RequiredError} */ filterNamedRange: (productSlug: string, name: string, authorization?: string, productVersionId?: number, pageSize?: number, pageToken?: string, filters?: string, search?: string, order?: string, options?: AxiosRequestConfig) => Promise; }; /** * NamedRangesApi - functional programming interface * @export */ export declare const NamedRangesApiFp: (configuration?: Configuration) => { /** * Returns a list of named range file records you have previously created. The named range file records are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. * @summary List named range file records * @param {string} productSlug A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id. * @param {string} name Name of Named Range. * @param {string} [authorization] Bearer Token * @param {number} [productVersionId] The product version id of the product version to be used for the lead. The product version id will be validated if the \'validate\' flag is set to true. * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. * @param {string} [filters] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time. * @param {string} [search] Search the list by any field. * @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC. * @param {*} [options] Override http request option. * @throws {RequiredError} */ filterNamedRange(productSlug: string, name: string, authorization?: string, productVersionId?: number, pageSize?: number, pageToken?: string, filters?: string, search?: string, order?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * NamedRangesApi - factory interface * @export */ export declare const NamedRangesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * Returns a list of named range file records you have previously created. The named range file records are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. * @summary List named range file records * @param {string} productSlug A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id. * @param {string} name Name of Named Range. * @param {string} [authorization] Bearer Token * @param {number} [productVersionId] The product version id of the product version to be used for the lead. The product version id will be validated if the \'validate\' flag is set to true. * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. * @param {string} [filters] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time. * @param {string} [search] Search the list by any field. * @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC. * @param {*} [options] Override http request option. * @throws {RequiredError} */ filterNamedRange(productSlug: string, name: string, authorization?: string, productVersionId?: number, pageSize?: number, pageToken?: string, filters?: string, search?: string, order?: string, options?: any): AxiosPromise; }; /** * Request parameters for filterNamedRange operation in NamedRangesApi. * @export * @interface NamedRangesApiFilterNamedRangeRequest */ export interface NamedRangesApiFilterNamedRangeRequest { /** * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id. * @type {string} * @memberof NamedRangesApiFilterNamedRange */ readonly productSlug: string; /** * Name of Named Range. * @type {string} * @memberof NamedRangesApiFilterNamedRange */ readonly name: string; /** * Bearer Token * @type {string} * @memberof NamedRangesApiFilterNamedRange */ readonly authorization?: string; /** * The product version id of the product version to be used for the lead. The product version id will be validated if the \'validate\' flag is set to true. * @type {number} * @memberof NamedRangesApiFilterNamedRange */ readonly productVersionId?: number; /** * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10. * @type {number} * @memberof NamedRangesApiFilterNamedRange */ readonly pageSize?: number; /** * A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list. * @type {string} * @memberof NamedRangesApiFilterNamedRange */ readonly pageToken?: string; /** * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time. * @type {string} * @memberof NamedRangesApiFilterNamedRange */ readonly filters?: string; /** * Search the list by any field. * @type {string} * @memberof NamedRangesApiFilterNamedRange */ readonly search?: string; /** * The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC. * @type {string} * @memberof NamedRangesApiFilterNamedRange */ readonly order?: string; } /** * NamedRangesApi - object-oriented interface * @export * @class NamedRangesApi * @extends {BaseAPI} */ export declare class NamedRangesApi extends BaseAPI { /** * Returns a list of named range file records you have previously created. The named range file records are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. * @summary List named range file records * @param {NamedRangesApiFilterNamedRangeRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof NamedRangesApi */ filterNamedRange(requestParameters: NamedRangesApiFilterNamedRangeRequest, options?: AxiosRequestConfig): Promise>; }