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

FieldValueUnion

import type { FieldValueUnion } from "https://aws-api.deno.dev/v0.4/services/connectcases.ts?docs=full";

Object to store union of Field values.

interface FieldValueUnion {
booleanValue?: boolean | null;
doubleValue?: number | null;
stringValue?: string | null;
}

§Properties

§
booleanValue?: boolean | null
[src]

Can be either null, or have a Boolean value type. Only one value can be provided.

§
doubleValue?: number | null
[src]

Can be either null, or have a Double number value type. Only one value can be provided.

§
stringValue?: string | null
[src]

String value type.