import * as z from "zod/v3"; export type GetTransactionGlobals = { merchantAccountId?: string | undefined; }; export type GetTransactionRequest = { /** * The ID of the transaction */ transactionId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type GetTransactionRequest$Outbound = { transaction_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const GetTransactionRequest$outboundSchema: z.ZodType; export declare function getTransactionRequestToJSON(getTransactionRequest: GetTransactionRequest): string; //# sourceMappingURL=gettransaction.d.ts.map