Comment entry that includes the full content of the comment.

interface CommentEntry {
    gd$extendedProperty: Entry<string, string>[];
    thr$in-reply-to: RawCommentReply;
    id: string;
    published: string;
    updated: string;
    title: string;
    link: RawEntryLink[];
    author: Author[];
    content: string;
}

Hierarchy (view full)

Properties

gd$extendedProperty: Entry<string, string>[]

Extended properties attached to the comment, containing key-value pairs that can contain additional metadata or settings.

The exact usage and valid properties are determined by the API.

thr$in-reply-to: RawCommentReply

Reference to the parent resource this comment is replying to. Could be either a blog entry or another comment in a thread.

id: string

The id of the entry.

published: string

RFC 3339 date-time when the entry was published.

updated: string

RFC 3339 date-time when the entry was last updated.

title: string

The title of the entry.

link: RawEntryLink[]

The links of the entry.

author: Author[]

The authors who published or updated the entry.

content: string

The content of the entry. Can contain HTML markup.