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

ListPhotoSequencesResponse

import type { ListPhotoSequencesResponse } from "https://googleapis.deno.dev/v1/streetviewpublish:v1.ts";

Response to list all photo sequences that belong to a user.

interface ListPhotoSequencesResponse {
nextPageToken?: string;
photoSequences?: Operation[];
}

§Properties

§
nextPageToken?: string
[src]

Token to retrieve the next page of results, or empty if there are no more results in the list.

§
photoSequences?: Operation[]
[src]

List of photo sequences via Operation interface. The maximum number of items returned is based on the pageSize field in the request. Each item in the list can have three possible states, * Operation.done = false, if the processing of PhotoSequence is not finished yet. * Operation.done = true and Operation.error is populated, if there was an error in processing. * Operation.done = true and Operation.response contains a PhotoSequence message, In each sequence, only Id is populated.