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

GoogleCloudAiplatformV1SchemaTextSegment

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

The text segment inside of DataItem.

interface GoogleCloudAiplatformV1SchemaTextSegment {
content?: string;
endOffset?: bigint;
startOffset?: bigint;
}

§Properties

§
content?: string
[src]

The text content in the segment for output only.

§
endOffset?: bigint
[src]

Zero-based character index of the first character past the end of the text segment (counting character from the beginning of the text). The character at the end_offset is NOT included in the text segment.

§
startOffset?: bigint
[src]

Zero-based character index of the first character of the text segment (counting characters from the beginning of the text).