import { type BaseRequestBuilder, type Guid, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /v2/deliveryNotes/{deliveryNoteId}/output/print */ export interface PrintRequestBuilder extends BaseRequestBuilder { /** * Execute the printing of a DeliveryNote * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws {ErrorResponse} error when the service returns a 400 status code */ post(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Execute the printing of a DeliveryNote * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Execute the printing of a DeliveryNote */ export interface PrintRequestBuilderPostQueryParameters { /** * Gets the unique identifier for the form (Formular) entity. */ formId?: Guid; /** * The target printer to print. The printer is Mandatory, if no User with Own Printer Configuration Available. */ printer?: string; } /** * Uri template for the request builder. */ export declare const PrintRequestBuilderUriTemplate = "{+baseurl}/v2/deliveryNotes/{deliveryNoteId}/output/print{?formId*,printer*}"; /** * Metadata for all the requests in the request builder. */ export declare const PrintRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map