import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UpsertSubscriptionItemEntity = { /** * The id of the item to update. */ id?: string | undefined; /** * 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 | undefined; }; /** @internal */ export declare const UpsertSubscriptionItemEntity$inboundSchema: z.ZodType; /** @internal */ export type UpsertSubscriptionItemEntity$Outbound = { id?: string | undefined; product_id?: string | undefined; price_id?: string | undefined; units?: number | undefined; }; /** @internal */ export declare const UpsertSubscriptionItemEntity$outboundSchema: z.ZodType; export declare function upsertSubscriptionItemEntityToJSON(upsertSubscriptionItemEntity: UpsertSubscriptionItemEntity): string; export declare function upsertSubscriptionItemEntityFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=upsertsubscriptionitementity.d.ts.map