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

EntityType

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

EntityType message contains metadata information about a single entity type present in the external system.

interface EntityType {
fields?: Field[];
jsonSchema?: JsonSchema;
name?: string;
operations?:
| "OPERATION_UNSPECIFIED"
| "LIST"
| "GET"
| "CREATE"
| "UPDATE"
| "DELETE"[];
}

§Properties

§
fields?: Field[]
[src]

List containing metadata information about each field of the entity type.

§
jsonSchema?: JsonSchema
[src]

JsonSchema representation of this entity's schema

§
name?: string
[src]

The name of the entity type.

§
operations?: "OPERATION_UNSPECIFIED" | "LIST" | "GET" | "CREATE" | "UPDATE" | "DELETE"[]
[src]