import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { PauseMode } from "./pause-mode.js"; import { PauseStatus } from "./pause-status.js"; import { ResumeMode } from "./resume-mode.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { Status } from "./status.js"; export type SubscriptionSubscriptionPause = { createdAt?: Date | undefined; createdBy?: string | undefined; /** * EnvironmentID is the environment identifier for the pause */ environmentId?: string | undefined; /** * ID is the unique identifier for the subscription pause */ id?: string | undefined; metadata?: { [k: string]: string; } | undefined; /** * OriginalPeriodEnd is the end of the billing period when the pause was created */ originalPeriodEnd?: Date | undefined; /** * OriginalPeriodStart is the start of the billing period when the pause was created */ originalPeriodStart?: Date | undefined; /** * PauseEnd is when the pause will end (null for indefinite) */ pauseEnd?: Date | undefined; pauseMode?: PauseMode | undefined; /** * PauseStart is when the pause actually started */ pauseStart?: Date | undefined; pauseStatus?: PauseStatus | undefined; /** * Reason is the reason for pausing */ reason?: string | undefined; resumeMode?: ResumeMode | undefined; /** * ResumedAt is when the pause was actually ended (if manually resumed) */ resumedAt?: 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 SubscriptionSubscriptionPause$inboundSchema: z.ZodMiniType; export declare function subscriptionSubscriptionPauseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscription-subscription-pause.d.ts.map