/** * Nested serializer for paywall status on a sellable item. */ export type SellableItemPaywall = { is_enabled: boolean; has_prices: boolean; lowest_price: string | null; stripe_product_id: string | null; };