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

RepeatedEnumAttributeValue

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

Values for an attribute with a value_type of REPEATED_ENUM. This consists of two lists of value IDs: those that are set (true) and those that are unset (false). Values absent are considered unknown. At least one value must be specified.

interface RepeatedEnumAttributeValue {
setValues?: string[];
unsetValues?: string[];
}

§Properties

§
setValues?: string[]
[src]

Enum values that are set.

§
unsetValues?: string[]
[src]

Enum values that are unset.