Interface Entry

interface Entry {
    author?: string;
    category?: Category;
    changed_at?: string;
    comments_url?: string;
    content?: string;
    created_at: string;
    enclosures?: Enclosure[];
    feed?: Feed;
    feed_id: number;
    id: number;
    published_at: string;
    reading_time?: number;
    share_code?: string;
    starred?: boolean;
    status: "unread" | "read" | "removed";
    tags?: string[];
    title: string;
    url: string;
    user_id: number;
}

Properties

author?: string
category?: Category
changed_at?: string
comments_url?: string
content?: string
created_at: string
enclosures?: Enclosure[]
feed?: Feed
feed_id: number
id: number
published_at: string
reading_time?: number
share_code?: string
starred?: boolean
status: "unread" | "read" | "removed"
tags?: string[]
title: string
url: string
user_id: number