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

LabelValue

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

A pair of text strings to be displayed in the details view. Note we no longer display LabelValue/LabelValueRow as a table, instead a list of items.

interface LabelValue {
label?: string;
localizedLabel?: LocalizedString;
localizedValue?: LocalizedString;
value?: string;
}

§Properties

§
label?: string
[src]

The label for a specific row and column. Recommended maximum is 15 characters for a two-column layout and 30 characters for a one-column layout.

§
localizedLabel?: LocalizedString
[src]

Translated strings for the label. Recommended maximum is 15 characters for a two-column layout and 30 characters for a one-column layout.

§
localizedValue?: LocalizedString
[src]

Translated strings for the value. Recommended maximum is 15 characters for a two-column layout and 30 characters for a one-column layout.

§
value?: string
[src]

The value for a specific row and column. Recommended maximum is 15 characters for a two-column layout and 30 characters for a one-column layout.