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

PostList

import type { PostList } from "https://googleapis.deno.dev/v1/blogger:v3.ts";
interface PostList {
etag?: string;
items?: Post[];
kind?: string;
nextPageToken?: string;
prevPageToken?: string;
}

§Properties

§
etag?: string
[src]

Etag of the response.

§
items?: Post[]
[src]

The list of Posts for this Blog.

§
kind?: string
[src]

The kind of this entity. Always blogger#postList.

§
nextPageToken?: string
[src]

Pagination token to fetch the next page, if one exists.

§
prevPageToken?: string
[src]

Pagination token to fetch the previous page, if one exists.