import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { ListResourceCustomerSubscription } from "../components/listresourcecustomersubscription.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CustomerPortalSeatsListClaimedSubscriptionsSecurity = { customerSession?: string | undefined; memberSession?: string | undefined; }; export type CustomerPortalSeatsListClaimedSubscriptionsRequest = { /** * Page number, defaults to 1. */ page?: number | undefined; /** * Size of a page, defaults to 10. Maximum is 100. */ limit?: number | undefined; }; export type CustomerPortalSeatsListClaimedSubscriptionsResponse = { result: ListResourceCustomerSubscription; }; /** @internal */ export type CustomerPortalSeatsListClaimedSubscriptionsSecurity$Outbound = { customer_session?: string | undefined; member_session?: string | undefined; }; /** @internal */ export declare const CustomerPortalSeatsListClaimedSubscriptionsSecurity$outboundSchema: z.ZodMiniType; export declare function customerPortalSeatsListClaimedSubscriptionsSecurityToJSON(customerPortalSeatsListClaimedSubscriptionsSecurity: CustomerPortalSeatsListClaimedSubscriptionsSecurity): string; /** @internal */ export type CustomerPortalSeatsListClaimedSubscriptionsRequest$Outbound = { page: number; limit: number; }; /** @internal */ export declare const CustomerPortalSeatsListClaimedSubscriptionsRequest$outboundSchema: z.ZodMiniType; export declare function customerPortalSeatsListClaimedSubscriptionsRequestToJSON(customerPortalSeatsListClaimedSubscriptionsRequest: CustomerPortalSeatsListClaimedSubscriptionsRequest): string; /** @internal */ export declare const CustomerPortalSeatsListClaimedSubscriptionsResponse$inboundSchema: z.ZodMiniType; export declare function customerPortalSeatsListClaimedSubscriptionsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customerportalseatslistclaimedsubscriptions.d.ts.map