export interface PaywallDTO { /** * Whether the content is behind a paywall */ isAccessibleForFree: boolean; /** * CSS selector for the paywall element (optional) */ cssSelector?: string; /** * Type of access restriction */ accessMode?: 'subscription' | 'payment' | 'registration' | 'free'; }