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

ClassifyTextResponse

import type { ClassifyTextResponse } from "https://googleapis.deno.dev/v1/language:v2.ts";

The document classification response message.

interface ClassifyTextResponse {
categories?: ClassificationCategory[];
languageCode?: string;
languageSupported?: boolean;
}

§Properties

§

Categories representing the input document.

§
languageCode?: string
[src]

The language of the text, which will be the same as the language specified in the request or, if not specified, the automatically-detected language. See Document.language field for more details.

§
languageSupported?: boolean
[src]

Whether the language is officially supported. The API may still return a response when the language is not supported, but it is on a best effort basis.