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

EnterpriseCrmFrontendsEventbusProtoParameterEntry

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

Key-value pair of EventBus parameters.

interface EnterpriseCrmFrontendsEventbusProtoParameterEntry {
dataType?:
| "DATA_TYPE_UNSPECIFIED"
| "STRING_VALUE"
| "INT_VALUE"
| "DOUBLE_VALUE"
| "BOOLEAN_VALUE"
| "PROTO_VALUE"
| "SERIALIZED_OBJECT_VALUE"
| "STRING_ARRAY"
| "INT_ARRAY"
| "DOUBLE_ARRAY"
| "PROTO_ARRAY"
| "PROTO_ENUM"
| "BOOLEAN_ARRAY"
| "PROTO_ENUM_ARRAY"
| "BYTES"
| "BYTES_ARRAY"
| "NON_SERIALIZABLE_OBJECT"
| "JSON_VALUE";
key?: string;
masked?: boolean;
}

§Properties

§
dataType?: "DATA_TYPE_UNSPECIFIED" | "STRING_VALUE" | "INT_VALUE" | "DOUBLE_VALUE" | "BOOLEAN_VALUE" | "PROTO_VALUE" | "SERIALIZED_OBJECT_VALUE" | "STRING_ARRAY" | "INT_ARRAY" | "DOUBLE_ARRAY" | "PROTO_ARRAY" | "PROTO_ENUM" | "BOOLEAN_ARRAY" | "PROTO_ENUM_ARRAY" | "BYTES" | "BYTES_ARRAY" | "NON_SERIALIZABLE_OBJECT" | "JSON_VALUE"
[src]

Explicitly getting the type of the parameter.

§
key?: string
[src]

Key is used to retrieve the corresponding parameter value. This should be unique for a given fired event. These parameters must be predefined in the workflow definition.

§
masked?: boolean
[src]

True if this parameter should be masked in the logs

§

Values for the defined keys. Each value can either be string, int, double or any proto message.