import * as z from "zod/v3"; /** * The details used to issue a new virtual gift card. */ export type GiftCardIssuanceCreate = { /** * The provider theme code to issue the gift card against. */ theme: string; /** * The amount to load onto the gift card, in the smallest denomination for the currency. */ amount: number; /** * The ISO-4217 currency code for the `amount`. */ currency: string; /** * An optional external identifier for this issuance. */ externalIdentifier?: string | null | undefined; }; /** @internal */ export type GiftCardIssuanceCreate$Outbound = { theme: string; amount: number; currency: string; external_identifier?: string | null | undefined; }; /** @internal */ export declare const GiftCardIssuanceCreate$outboundSchema: z.ZodType; export declare function giftCardIssuanceCreateToJSON(giftCardIssuanceCreate: GiftCardIssuanceCreate): string; //# sourceMappingURL=giftcardissuancecreate.d.ts.map