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

Blog

import type { Blog } from "https://googleapis.deno.dev/v1/blogger:v3.ts";
interface Blog {
customMetaData?: string;
description?: string;
id?: string;
kind?: string;
locale?: {
country?: string;
language?: string;
variant?: string;
}
;
name?: string;
pages?: {
selfLink?: string;
totalItems?: number;
}
;
posts?: {
items?: Post[];
selfLink?: string;
totalItems?: number;
}
;
published?: string;
selfLink?: string;
status?: "LIVE" | "DELETED";
updated?: string;
url?: string;
}

§Properties

§
customMetaData?: string
[src]

The JSON custom meta-data for the Blog.

§
description?: string
[src]

The description of this blog. This is displayed underneath the title.

§
id?: string
[src]

The identifier for this resource.

§
kind?: string
[src]

The kind of this entry. Always blogger#blog.

§
locale?: {
country?: string;
language?: string;
variant?: string;
}
[src]

The locale this Blog is set to.

§
name?: string
[src]

The name of this blog. This is displayed as the title.

§
pages?: {
selfLink?: string;
totalItems?: number;
}
[src]

The container of pages in this blog.

§
posts?: {
items?: Post[];
selfLink?: string;
totalItems?: number;
}
[src]

The container of posts in this blog.

§
published?: string
[src]

RFC 3339 date-time when this blog was published.

§
status?: "LIVE" | "DELETED"
[src]

The status of the blog.

§
updated?: string
[src]

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

§
url?: string
[src]

The URL where this blog is published.