import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateTransactionRefundGlobals = { merchantAccountId?: string | undefined; }; export type CreateTransactionRefundRequest = { /** * The ID of the transaction */ transactionId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; /** * A unique key that identifies this request. Providing this header will make this an idempotent request. We recommend using V4 UUIDs, or another random string with enough entropy to avoid collisions. */ idempotencyKey?: string | null | undefined; transactionRefundCreate: components.TransactionRefundCreate; }; /** @internal */ export type CreateTransactionRefundRequest$Outbound = { transaction_id: string; merchantAccountId?: string | null | undefined; "idempotency-key"?: string | null | undefined; TransactionRefundCreate: components.TransactionRefundCreate$Outbound; }; /** @internal */ export declare const CreateTransactionRefundRequest$outboundSchema: z.ZodType; export declare function createTransactionRefundRequestToJSON(createTransactionRefundRequest: CreateTransactionRefundRequest): string; //# sourceMappingURL=createtransactionrefund.d.ts.map