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

ListStepThumbnailsResponse

import type { ListStepThumbnailsResponse } from "https://googleapis.deno.dev/v1/toolresults:v1beta3.ts";

A response containing the thumbnails in a step.

interface ListStepThumbnailsResponse {
nextPageToken?: string;
thumbnails?: Image[];
}

§Properties

§
nextPageToken?: string
[src]

A continuation token to resume the query at the next item. If set, indicates that there are more thumbnails to read, by calling list again with this value in the page_token field.

§
thumbnails?: Image[]
[src]

A list of image data. Images are returned in a deterministic order; they are ordered by these factors, in order of importance: * First, by their associated test case. Images without a test case are considered greater than images with one. * Second, by their creation time. Images without a creation time are greater than images with one. * Third, by the order in which they were added to the step (by calls to CreateStep or UpdateStep).