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

Page

import type { Page } from "https://googleapis.deno.dev/v1/blogger:v3.ts";
interface Page {
author?: {
displayName?: string;
id?: string;
image?: {
url?: string;
}
;
url?: string;
}
;
blog?: {
id?: string;
}
;
content?: string;
etag?: string;
id?: string;
kind?: string;
published?: string;
selfLink?: string;
status?: "LIVE" | "DRAFT" | "SOFT_TRASHED";
title?: string;
trashed?: string;
updated?: string;
url?: string;
}

§Properties

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

The author of this Page.

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

Data about the blog containing this Page.

§
content?: string
[src]

The body content of this Page, in HTML.

§
etag?: string
[src]

Etag of the resource.

§
id?: string
[src]

The identifier for this resource.

§
kind?: string
[src]

The kind of this entity. Always blogger#page.

§
published?: string
[src]

RFC 3339 date-time when this Page was published.

§
status?: "LIVE" | "DRAFT" | "SOFT_TRASHED"
[src]

The status of the page for admin resources (either LIVE or DRAFT).

§
title?: string
[src]

The title of this entity. This is the name displayed in the Admin user interface.

§
trashed?: string
[src]

RFC 3339 date-time when this Page was trashed.

§
updated?: string
[src]

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

§
url?: string
[src]

The URL that this Page is displayed at.