import * as z from "zod/v3"; export type GiftCardTokenTransactionCreate = { /** * The ID for the gift card to charge. */ id: string; /** * The monetary amount for this transaction to charge against the gift card, in the smallest currency unit (for example, cents or pence). */ amount: number; }; /** @internal */ export type GiftCardTokenTransactionCreate$Outbound = { id: string; amount: number; }; /** @internal */ export declare const GiftCardTokenTransactionCreate$outboundSchema: z.ZodType; export declare function giftCardTokenTransactionCreateToJSON(giftCardTokenTransactionCreate: GiftCardTokenTransactionCreate): string; //# sourceMappingURL=giftcardtokentransactioncreate.d.ts.map