import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { CouponCadence } from "./coupon-cadence.js"; import { CouponType } from "./coupon-type.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { Status } from "./status.js"; export type CouponResponse = { amountOff?: string | undefined; cadence?: CouponCadence | undefined; couponCode?: string | undefined; createdAt?: Date | undefined; createdBy?: string | undefined; currency?: string | undefined; durationInPeriods?: number | undefined; environmentId?: string | undefined; id?: string | undefined; maxRedemptions?: number | undefined; metadata?: { [k: string]: string; } | undefined; name?: string | undefined; percentageOff?: string | undefined; redeemAfter?: string | undefined; redeemBefore?: string | undefined; rules?: { [k: string]: any; } | undefined; status?: Status | undefined; tenantId?: string | undefined; totalRedemptions?: number | undefined; type?: CouponType | undefined; updatedAt?: Date | undefined; updatedBy?: string | undefined; }; /** @internal */ export declare const CouponResponse$inboundSchema: z.ZodMiniType; export declare function couponResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=coupon-response.d.ts.map