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

GooglePrivacyDlpV2Value

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

Set of primitive values supported by the system. Note that for the purposes of inspection or transformation, the number of bytes considered to comprise a 'Value' is based on its representation as a UTF-8 encoded string. For example, if 'integer_value' is set to 123456789, the number of bytes would be counted as 9, even though an int64 only holds up to 8 bytes of data.

interface GooglePrivacyDlpV2Value {
booleanValue?: boolean;
dateValue?: GoogleTypeDate;
dayOfWeekValue?:
| "DAY_OF_WEEK_UNSPECIFIED"
| "MONDAY"
| "TUESDAY"
| "WEDNESDAY"
| "THURSDAY"
| "FRIDAY"
| "SATURDAY"
| "SUNDAY";
floatValue?: number;
integerValue?: bigint;
stringValue?: string;
timestampValue?: Date;
timeValue?: GoogleTypeTimeOfDay;
}

§Properties

§
booleanValue?: boolean
[src]

boolean

§

date

§
dayOfWeekValue?: "DAY_OF_WEEK_UNSPECIFIED" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY"
[src]

day of week

§
floatValue?: number
[src]

float

§
integerValue?: bigint
[src]

integer

§
stringValue?: string
[src]

string

§
timestampValue?: Date
[src]

timestamp

§

time of day