import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RetrieveDiscountRequest = { /** * The unique identifier of the discount (provide either discount_id OR discount_code). */ discountId?: string | undefined; /** * The unique discount code (provide either discount_id OR discount_code). */ discountCode?: string | undefined; }; /** @internal */ export declare const RetrieveDiscountRequest$inboundSchema: z.ZodType; /** @internal */ export type RetrieveDiscountRequest$Outbound = { discount_id?: string | undefined; discount_code?: string | undefined; }; /** @internal */ export declare const RetrieveDiscountRequest$outboundSchema: z.ZodType; export declare function retrieveDiscountRequestToJSON(retrieveDiscountRequest: RetrieveDiscountRequest): string; export declare function retrieveDiscountRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=retrievediscount.d.ts.map