import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SearchTransactionsRequest = { /** * Filter transactions by customer ID. */ customerId?: string | undefined; /** * Filter transactions by order ID. */ orderId?: string | undefined; /** * Filter transactions by product ID. */ productId?: string | undefined; /** * The page number for pagination. */ pageNumber?: number | undefined; /** * The number of items per page. */ pageSize?: number | undefined; }; /** @internal */ export declare const SearchTransactionsRequest$inboundSchema: z.ZodType; /** @internal */ export type SearchTransactionsRequest$Outbound = { customer_id?: string | undefined; order_id?: string | undefined; product_id?: string | undefined; page_number: number; page_size: number; }; /** @internal */ export declare const SearchTransactionsRequest$outboundSchema: z.ZodType; export declare function searchTransactionsRequestToJSON(searchTransactionsRequest: SearchTransactionsRequest): string; export declare function searchTransactionsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=searchtransactions.d.ts.map