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

ListTagsResponse

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

The response from listing tags.

interface ListTagsResponse {
nextPageToken?: string;
tags?: Tag[];
}

§Properties

§
nextPageToken?: string
[src]

The token to retrieve the next page of tags, or empty if there are no more tags to return.

§
tags?: Tag[]
[src]

The tags returned.