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

CustomAttribute

import type { CustomAttribute } from "https://googleapis.deno.dev/v1/jobs:v4.ts";

Custom attribute values that are either filterable or non-filterable.

interface CustomAttribute {
filterable?: boolean;
keywordSearchable?: boolean;
longValues?: bigint[];
stringValues?: string[];
}

§Properties

§
filterable?: boolean
[src]

If the filterable flag is true, the custom field values may be used for custom attribute filters JobQuery.custom_attribute_filter. If false, these values may not be used for custom attribute filters. Default is false.

§
keywordSearchable?: boolean
[src]

If the keyword_searchable flag is true, the keywords in custom fields are searchable by keyword match. If false, the values are not searchable by keyword match. Default is false.

§
longValues?: bigint[]
[src]

Exactly one of string_values or long_values must be specified. This field is used to perform number range search. (EQ, GT, GE, LE, LT) over filterable long_value. Currently at most 1 long_values is supported.

§
stringValues?: string[]
[src]

Exactly one of string_values or long_values must be specified. This field is used to perform a string match (CASE_SENSITIVE_MATCH or CASE_INSENSITIVE_MATCH) search. For filterable string_values, a maximum total number of 200 values is allowed, with each string_value has a byte size of no more than 500B. For unfilterable string_values, the maximum total byte size of unfilterable string_values is 50KB. Empty string isn't allowed.