import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { CouponResponse } from "./coupon-response.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { Status } from "./status.js"; import { SubscriptionLineItemResponse } from "./subscription-line-item-response.js"; export type CouponAssociationResponse = { coupon?: CouponResponse | undefined; couponId?: string | undefined; createdAt?: Date | undefined; createdBy?: string | undefined; /** * Optional */ endDate?: Date | undefined; environmentId?: string | undefined; id?: string | undefined; metadata?: { [k: string]: string; } | undefined; startDate?: Date | undefined; status?: Status | undefined; /** * Mandatory */ subscriptionId?: string | undefined; subscriptionLineItem?: SubscriptionLineItemResponse | undefined; /** * Optional */ subscriptionLineItemId?: string | undefined; /** * Optional */ subscriptionPhaseId?: string | undefined; tenantId?: string | undefined; updatedAt?: Date | undefined; updatedBy?: string | undefined; }; /** @internal */ export declare const CouponAssociationResponse$inboundSchema: z.ZodMiniType; export declare function couponAssociationResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=coupon-association-response.d.ts.map