import { type BaseRequestBuilder, type Guid, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /v2/salesorder/itempricedetails */ export interface ItempricedetailsRequestBuilder extends BaseRequestBuilder { /** * Returns a list of price details for the requested items. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} */ get(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Returns a list of price details for the requested items. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Returns a list of price details for the requested items. */ export interface ItempricedetailsRequestBuilderGetQueryParameters { currencyFactor?: number; /** * Gets the unique identifier for the customer. */ customerId?: Guid; /** * Gets a value indicating whether the customer key represents an existing customer. */ isExisting?: boolean; itemIds?: Guid; } /** * Uri template for the request builder. */ export declare const ItempricedetailsRequestBuilderUriTemplate = "{+baseurl}/v2/salesorder/itempricedetails{?IsExisting*,currencyFactor*,customerId*,itemIds*}"; /** * Metadata for all the requests in the request builder. */ export declare const ItempricedetailsRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map