import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { GiftCardServiceProvider } from "./giftcardserviceprovider.js"; export type GiftCardService = { /** * Always `gift-card-service`. */ type: "gift-card-service"; /** * The ID for the gift card service. */ id: string; giftCardServiceDefinitionId: GiftCardServiceProvider; /** * The display name for the gift card service. */ displayName: string; }; /** @internal */ export declare const GiftCardService$inboundSchema: z.ZodType; export declare function giftCardServiceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=giftcardservice.d.ts.map