import * as z from "zod/v3"; export type CancelTransactionGlobals = { merchantAccountId?: string | undefined; }; export type CancelTransactionRequest = { /** * 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 CancelTransactionRequest$Outbound = { transaction_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const CancelTransactionRequest$outboundSchema: z.ZodType; export declare function cancelTransactionRequestToJSON(cancelTransactionRequest: CancelTransactionRequest): string; //# sourceMappingURL=canceltransaction.d.ts.map