import * as z from "zod/v3"; export type TransactionRefundAllCreate = { /** * An optional reason to attach extra context to the refund requests. */ reason?: string | null | undefined; /** * An external identifier that can be used to match the refunds against your own records. */ externalIdentifier?: string | null | undefined; }; /** @internal */ export type TransactionRefundAllCreate$Outbound = { reason?: string | null | undefined; external_identifier?: string | null | undefined; }; /** @internal */ export declare const TransactionRefundAllCreate$outboundSchema: z.ZodType; export declare function transactionRefundAllCreateToJSON(transactionRefundAllCreate: TransactionRefundAllCreate): string; //# sourceMappingURL=transactionrefundallcreate.d.ts.map