import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListTransactionEventsGlobals = { merchantAccountId?: string | undefined; }; export type ListTransactionEventsRequest = { /** * The ID of the transaction */ transactionId: string; /** * A pointer to the page of results to return. */ cursor?: string | null | undefined; /** * The maximum number of items that are at returned. */ limit?: number | undefined; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; export type ListTransactionEventsResponse = { result: components.TransactionEvents; }; /** @internal */ export type ListTransactionEventsRequest$Outbound = { transaction_id: string; cursor?: string | null | undefined; limit: number; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const ListTransactionEventsRequest$outboundSchema: z.ZodType; export declare function listTransactionEventsRequestToJSON(listTransactionEventsRequest: ListTransactionEventsRequest): string; /** @internal */ export declare const ListTransactionEventsResponse$inboundSchema: z.ZodType; export declare function listTransactionEventsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listtransactionevents.d.ts.map