import { type Invoice } from '../../../models/index.js'; import { type LineitemsRequestBuilder } from './lineitems/index.js'; import { type OutputRequestBuilder } from './output/index.js'; import { type WorkflowRequestBuilder } from './workflow/index.js'; import { type WorkflowEventsRequestBuilder } from './workflowEvents/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /v2/invoices/{invoiceId} */ export interface WithInvoiceItemRequestBuilder extends BaseRequestBuilder { /** * The lineitems property */ get lineitems(): LineitemsRequestBuilder; /** * The output property */ get output(): OutputRequestBuilder; /** * The workflow property */ get workflow(): WorkflowRequestBuilder; /** * The workflowEvents property */ get workflowEvents(): WorkflowEventsRequestBuilder; /** * Get a specific invoice * @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; /** * Get a specific invoice * @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 WithInvoiceItemRequestBuilderUriTemplate = "{+baseurl}/v2/invoices/{invoiceId}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const WithInvoiceItemRequestBuilderNavigationMetadata: Record, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const WithInvoiceItemRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map