import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { AddonAssociationEntityType } from "./addon-association-entity-type.js"; import { AddonResponse } from "./addon-response.js"; import { AddonStatus } from "./addon-status.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { Status } from "./status.js"; import { SubscriptionResponse } from "./subscription-response.js"; export type AddonAssociationResponse = { addon?: AddonResponse | undefined; addonId?: string | undefined; addonStatus?: AddonStatus | undefined; cancellationReason?: string | undefined; cancelledAt?: Date | undefined; createdAt?: Date | undefined; createdBy?: string | undefined; endDate?: Date | undefined; entityId?: string | undefined; entityType?: AddonAssociationEntityType | undefined; environmentId?: string | undefined; id?: string | undefined; metadata?: { [k: string]: any; } | undefined; startDate?: Date | undefined; status?: Status | undefined; subscription?: SubscriptionResponse | undefined; tenantId?: string | undefined; updatedAt?: Date | undefined; updatedBy?: string | undefined; }; /** @internal */ export declare const AddonAssociationResponse$inboundSchema: z.ZodMiniType; export declare function addonAssociationResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=addon-association-response.d.ts.map