import { type WithCreditNoteItemRequestBuilder } from './item/index.js'; import { type BaseRequestBuilder, type Guid, type KeysToExcludeForNavigationMetadata, type NavigationMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /v2/creditNotes */ export interface CreditNotesRequestBuilder extends BaseRequestBuilder { /** * Gets an item from the JtlErpApi.v2.creditNotes.item collection * @param creditNoteId The id of the sales order for that the mail to start. * @returns {WithCreditNoteItemRequestBuilder} */ byCreditNoteId(creditNoteId: Guid): WithCreditNoteItemRequestBuilder; } /** * Uri template for the request builder. */ export declare const CreditNotesRequestBuilderUriTemplate = "{+baseurl}/v2/creditNotes"; /** * Metadata for all the navigation properties in the request builder. */ export declare const CreditNotesRequestBuilderNavigationMetadata: Record, NavigationMetadata>; //# sourceMappingURL=index.d.ts.map