import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateFullTransactionRefundGlobals = { merchantAccountId?: string | undefined; }; export type CreateFullTransactionRefundRequest = { /** * 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; transactionRefundAllCreate?: components.TransactionRefundAllCreate | null | undefined; }; /** @internal */ export type CreateFullTransactionRefundRequest$Outbound = { transaction_id: string; merchantAccountId?: string | null | undefined; "idempotency-key"?: string | null | undefined; TransactionRefundAllCreate?: components.TransactionRefundAllCreate$Outbound | null | undefined; }; /** @internal */ export declare const CreateFullTransactionRefundRequest$outboundSchema: z.ZodType; export declare function createFullTransactionRefundRequestToJSON(createFullTransactionRefundRequest: CreateFullTransactionRefundRequest): string; //# sourceMappingURL=createfulltransactionrefund.d.ts.map