import * as z from "zod/v3"; import * as components from "../components/index.js"; export type UpdateTransactionGlobals = { merchantAccountId?: string | undefined; }; export type UpdateTransactionRequest = { /** * The ID of the transaction */ transactionId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; transactionUpdate: components.TransactionUpdate; }; /** @internal */ export type UpdateTransactionRequest$Outbound = { transaction_id: string; merchantAccountId?: string | null | undefined; TransactionUpdate: components.TransactionUpdate$Outbound; }; /** @internal */ export declare const UpdateTransactionRequest$outboundSchema: z.ZodType; export declare function updateTransactionRequestToJSON(updateTransactionRequest: UpdateTransactionRequest): string; //# sourceMappingURL=updatetransaction.d.ts.map