import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { Status } from "./status.js"; export type SubscriptionPhaseResponse = { createdAt?: Date | undefined; createdBy?: string | undefined; /** * EndDate is when the phase ends (nil if phase is still active or indefinite) */ endDate?: Date | undefined; /** * EnvironmentID is the environment identifier for the phase */ environmentId?: string | undefined; /** * ID is the unique identifier for the subscription phase */ id?: string | undefined; metadata?: { [k: string]: string; } | undefined; /** * StartDate is when the phase starts */ startDate?: Date | undefined; status?: Status | undefined; /** * SubscriptionID is the identifier for the subscription */ subscriptionId?: string | undefined; tenantId?: string | undefined; updatedAt?: Date | undefined; updatedBy?: string | undefined; }; /** @internal */ export declare const SubscriptionPhaseResponse$inboundSchema: z.ZodMiniType; export declare function subscriptionPhaseResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscription-phase-response.d.ts.map