import * as z from "zod/v3"; /** * The number and pin for a gift card to fetch a balance for. */ export type GiftCardRequest = { /** * The 16-19 digit number for the gift card. */ number: string; /** * The PIN for this gift card. */ pin: string; }; /** @internal */ export type GiftCardRequest$Outbound = { number: string; pin: string; }; /** @internal */ export declare const GiftCardRequest$outboundSchema: z.ZodType; export declare function giftCardRequestToJSON(giftCardRequest: GiftCardRequest): string; //# sourceMappingURL=giftcardrequest.d.ts.map