Interface PaywallBlockDivider

A paywall block that appears as a divider.

interface PaywallBlockDivider {
    color?: string;
    is_visible?: boolean;
    subtype: "divider";
    text: string;
    type: "paywall";
    url: string;
}

Hierarchy

  • PaywallBlockBase
    • PaywallBlockDivider

Properties

color?: string

The hex color for the label and divider, e.g. #eeeeee.

is_visible?: boolean

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

subtype

The paywall block design.

text: string

The label text.

type
url: string

The creator profile url this paywall should link to.