import { type CustomFieldValue } from '../../../../models/index.js'; import { type WithCustomfieldItemRequestBuilder } from './item/index.js'; import { type BaseRequestBuilder, type Guid, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /v2/customers/{customerId}/customfields */ export interface CustomfieldsRequestBuilder extends BaseRequestBuilder { /** * Gets an item from the JtlErpApi.v2.customers.item.customfields.item collection * @param customfieldId The id of the customfield that should be updated. * @returns {WithCustomfieldItemRequestBuilder} */ byCustomfieldId(customfieldId: Guid): WithCustomfieldItemRequestBuilder; /** * Query all custom fields and corresponding values for a specific customer * @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 */ get(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Query all custom fields and corresponding values for a specific customer * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const CustomfieldsRequestBuilderUriTemplate = "{+baseurl}/v2/customers/{customerId}/customfields"; /** * Metadata for all the navigation properties in the request builder. */ export declare const CustomfieldsRequestBuilderNavigationMetadata: Record, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const CustomfieldsRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map