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

GooglePlayDeveloperReportingV1beta1DimensionValue

import type { GooglePlayDeveloperReportingV1beta1DimensionValue } from "https://googleapis.deno.dev/v1/playdeveloperreporting:v1beta1.ts";

Represents the value of a single dimension.

interface GooglePlayDeveloperReportingV1beta1DimensionValue {
dimension?: string;
int64Value?: bigint;
stringValue?: string;
valueLabel?: string;
}

§Properties

§
dimension?: string
[src]

Name of the dimension.

§
int64Value?: bigint
[src]

Actual value, represented as an int64.

§
stringValue?: string
[src]

Actual value, represented as a string.

§
valueLabel?: string
[src]

Optional. Human-friendly label for the value, always in English. For example, 'Spain' for the 'ES' country code. Whereas the dimension value is stable, this value label is subject to change. Do not assume that the (value, value_label) relationship is stable. For example, the ISO country code 'MK' changed its name recently to 'North Macedonia'.