import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { BillingPeriod } from "./billing-period.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type CreateSubscriptionParams = { billingPeriod?: BillingPeriod | undefined; currency?: string | undefined; endDate?: Date | undefined; lookupKey?: string | undefined; metadata?: { [k: string]: string; } | undefined; planId?: string | undefined; startDate?: Date | undefined; subscriptionId?: string | undefined; }; /** @internal */ export declare const CreateSubscriptionParams$inboundSchema: z.ZodMiniType; /** @internal */ export type CreateSubscriptionParams$Outbound = { billing_period?: string | undefined; currency?: string | undefined; end_date?: string | undefined; lookup_key?: string | undefined; metadata?: { [k: string]: string; } | undefined; plan_id?: string | undefined; start_date?: string | undefined; subscription_id?: string | undefined; }; /** @internal */ export declare const CreateSubscriptionParams$outboundSchema: z.ZodMiniType; export declare function createSubscriptionParamsToJSON(createSubscriptionParams: CreateSubscriptionParams): string; export declare function createSubscriptionParamsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=create-subscription-params.d.ts.map