import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TransactionGiftCard = { /** * Always `gift-card`. */ type: "gift-card"; /** * The ID for the gift card. */ id?: string | null | undefined; /** * The first 6 digits of the full gift card number. */ bin: string; /** * The 3 digits after the `bin` of the full gift card number. */ subBin: string; /** * The last 4 digits for the gift card. */ last4: string; }; /** @internal */ export declare const TransactionGiftCard$inboundSchema: z.ZodType; export declare function transactionGiftCardFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=transactiongiftcard.d.ts.map