import { type NumberRangeCurrentNumberItem } from '../../../../../models/index.js'; import { type BaseRequestBuilder, type Guid, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /v2/configuration/numberRanges/{numberRangeId}/increment */ export interface IncrementRequestBuilder extends BaseRequestBuilder { /** * Increment and returns the Next Number for the given NumberRange * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ErrorResponse} error when the service returns a 404 status code */ post(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Increment and returns the Next Number for the given NumberRange * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Increment and returns the Next Number for the given NumberRange */ export interface IncrementRequestBuilderPostQueryParameters { /** * Gets the unique identifier for the firm. */ companyId?: Guid; } /** * Uri template for the request builder. */ export declare const IncrementRequestBuilderUriTemplate = "{+baseurl}/v2/configuration/numberRanges/{numberRangeId}/increment{?companyId*}"; /** * Metadata for all the requests in the request builder. */ export declare const IncrementRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map