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

SearchAgentsResponse

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

Message for response to searching Agents

interface SearchAgentsResponse {
agents?: Agent[];
nextPageToken?: string;
}

§Properties

§
agents?: Agent[]
[src]

A list of Agents that match the search_string.

§
nextPageToken?: string
[src]

If there are more results than those appearing in this response, then next_page_token is included. To get the next set of results, call this method again using the value of next_page_token as page_token.