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

EnterpriseCrmEventbusProtoValueType

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

Used for define type for values. Currently supported value types include int, string, double, array, and any proto message.

interface EnterpriseCrmEventbusProtoValueType {
booleanValue?: boolean;
doubleValue?: number;
intValue?: bigint;
protoValue?: {
[key: string]: any;
}
;
stringValue?: string;
}

§Properties

§
booleanValue?: boolean
[src]
§
doubleValue?: number
[src]
§
intValue?: bigint
[src]
§
protoValue?: {
[key: string]: any;
}
[src]
§
stringValue?: string
[src]