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

Variant

import type { Variant } from "https://aws-api.deno.dev/v0.3/services/iotsitewise.ts?docs=full";

Contains an asset property value (of a single type only).

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

§Properties

§
booleanValue?: boolean | null
[src]

Asset property data of type Boolean (true or false).

§
doubleValue?: number | null
[src]

Asset property data of type double (floating point number).

§
integerValue?: number | null
[src]

Asset property data of type integer (whole number).

§
stringValue?: string | null
[src]

Asset property data of type string (sequence of characters).