Interface PaywallBlockCta

A CTA (unpaid) or disabled paywall block.

interface PaywallBlockCta {
    is_visible?: boolean;
    subtype: "cta" | "disabled";
    text: string;
    title: string;
    type: "paywall";
    url: string;
}

Hierarchy

  • PaywallBlockBase
    • PaywallBlockCta

Properties

is_visible?: boolean

Whether this paywall block is actually visible, default to true.

subtype: "cta" | "disabled"

The paywall block design.

text: string

The main description text.

title: string

The CTA title that appears above the main text.

type
url: string

The creator profile url this paywall should link to.