import * as z from "zod/v4-mini"; import { CustomerSubscriptionUpdate, CustomerSubscriptionUpdate$Outbound } from "../components/customersubscriptionupdate.js"; export type CustomerPortalSubscriptionsUpdateSecurity = { customerSession?: string | undefined; memberSession?: string | undefined; }; export type CustomerPortalSubscriptionsUpdateRequest = { /** * The subscription ID. */ id: string; customerSubscriptionUpdate: CustomerSubscriptionUpdate; }; /** @internal */ export type CustomerPortalSubscriptionsUpdateSecurity$Outbound = { customer_session?: string | undefined; member_session?: string | undefined; }; /** @internal */ export declare const CustomerPortalSubscriptionsUpdateSecurity$outboundSchema: z.ZodMiniType; export declare function customerPortalSubscriptionsUpdateSecurityToJSON(customerPortalSubscriptionsUpdateSecurity: CustomerPortalSubscriptionsUpdateSecurity): string; /** @internal */ export type CustomerPortalSubscriptionsUpdateRequest$Outbound = { id: string; CustomerSubscriptionUpdate: CustomerSubscriptionUpdate$Outbound; }; /** @internal */ export declare const CustomerPortalSubscriptionsUpdateRequest$outboundSchema: z.ZodMiniType; export declare function customerPortalSubscriptionsUpdateRequestToJSON(customerPortalSubscriptionsUpdateRequest: CustomerPortalSubscriptionsUpdateRequest): string; //# sourceMappingURL=customerportalsubscriptionsupdate.d.ts.map