Interface Article

Article information

interface Article {
    author: string;
    blog_id: number;
    body_html: string;
    comments_count: number;
    comments_enabled: boolean;
    created_on: string;
    handle: string;
    id: number;
    published: boolean;
    published_on?: string;
    summary_html?: string;
    tags: string;
    template_suffix?: string;
    title: string;
    updated_on: string;
}

Properties

author: string

Article author

blog_id: number

Blog ID

body_html: string

Article content in HTML

comments_count: number

Comment count

comments_enabled: boolean

Whether comments are enabled

created_on: string

Creation timestamp

handle: string

URL handle

id: number

Unique identifier

published: boolean

Whether article is published

published_on?: string

Publication timestamp

summary_html?: string

Article summary in HTML

tags: string

Comma-separated tags

template_suffix?: string

Template suffix

title: string

Article title

updated_on: string

Last update timestamp