Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Comment

import type { Comment } from "https://googleapis.deno.dev/v1/blogger:v3.ts";
interface Comment {
author?: {
displayName?: string;
id?: string;
image?: {
url?: string;
}
;
url?: string;
}
;
blog?: {
id?: string;
}
;
content?: string;
id?: string;
inReplyTo?: {
id?: string;
}
;
kind?: string;
post?: {
id?: string;
}
;
published?: string;
selfLink?: string;
status?:
| "LIVE"
| "EMPTIED"
| "PENDING"
| "SPAM";
updated?: string;
}

§Properties

§
author?: {
displayName?: string;
id?: string;
image?: {
url?: string;
}
;
url?: string;
}
[src]

The author of this Comment.

§
blog?: {
id?: string;
}
[src]

Data about the blog containing this comment.

§
content?: string
[src]

The actual content of the comment. May include HTML markup.

§
id?: string
[src]

The identifier for this resource.

§
inReplyTo?: {
id?: string;
}
[src]

Data about the comment this is in reply to.

§
kind?: string
[src]

The kind of this entry. Always blogger#comment.

§
post?: {
id?: string;
}
[src]

Data about the post containing this comment.

§
published?: string
[src]

RFC 3339 date-time when this comment was published.

§
status?: "LIVE" | "EMPTIED" | "PENDING" | "SPAM"
[src]

The status of the comment (only populated for admin users).

§
updated?: string
[src]

RFC 3339 date-time when this comment was last updated.