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/merchantapi:reviews_v1beta.ts";

A message that represents custom attributes. Exactly one of value or group_values must not be empty.

interface CustomAttribute {
groupValues?: CustomAttribute[];
name?: string;
value?: string;
}

§Properties

§
groupValues?: CustomAttribute[]
[src]

Subattributes within this attribute group. If group_values is not empty, value must be empty.

§
name?: string
[src]

The name of the attribute.

§
value?: string
[src]

The value of the attribute. If value is not empty, group_values must be empty.