import * as z from "zod/v3"; /** * Create a charge against a gift card */ export type GiftCardTransactionCreate = { /** * The 16-19 digit number for the gift card. */ number: string; /** * The PIN for this gift card. */ pin: 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 GiftCardTransactionCreate$Outbound = { number: string; pin: string; amount: number; }; /** @internal */ export declare const GiftCardTransactionCreate$outboundSchema: z.ZodType; export declare function giftCardTransactionCreateToJSON(giftCardTransactionCreate: GiftCardTransactionCreate): string; //# sourceMappingURL=giftcardtransactioncreate.d.ts.map