import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EnvironmentMode } from "./environmentmode.js"; export type SubscriptionItemEntity = { /** * Unique identifier for the object. */ id: string; /** * String representing the environment. */ mode: EnvironmentMode; /** * String representing the object’s type. Objects of the same type share the same value. */ object: string; /** * The ID of the product associated with the subscription item. */ productId?: string | undefined; /** * The ID of the price associated with the subscription item. */ priceId?: string | undefined; /** * The number of units for the subscription item. */ units?: number | null | undefined; }; /** @internal */ export declare const SubscriptionItemEntity$inboundSchema: z.ZodType; /** @internal */ export type SubscriptionItemEntity$Outbound = { id: string; mode: string; object: string; product_id?: string | undefined; price_id?: string | undefined; units?: number | null | undefined; }; /** @internal */ export declare const SubscriptionItemEntity$outboundSchema: z.ZodType; export declare function subscriptionItemEntityToJSON(subscriptionItemEntity: SubscriptionItemEntity): string; export declare function subscriptionItemEntityFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriptionitementity.d.ts.map