import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { CouponType } from "./coupon-type.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { Status } from "./status.js"; export type CouponApplicationResponse = { appliedAt?: Date | undefined; couponAssociationId?: string | undefined; couponId?: string | undefined; couponSnapshot?: { [k: string]: any; } | undefined; createdAt?: Date | undefined; createdBy?: string | undefined; currency?: string | undefined; discountPercentage?: string | undefined; discountType?: CouponType | undefined; discountedAmount?: string | undefined; environmentId?: string | undefined; finalPrice?: string | undefined; id?: string | undefined; invoiceId?: string | undefined; invoiceLineItemId?: string | undefined; metadata?: { [k: string]: string; } | undefined; originalPrice?: string | undefined; status?: Status | undefined; subscriptionId?: string | undefined; tenantId?: string | undefined; updatedAt?: Date | undefined; updatedBy?: string | undefined; }; /** @internal */ export declare const CouponApplicationResponse$inboundSchema: z.ZodMiniType; export declare function couponApplicationResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=coupon-application-response.d.ts.map