Page Summary
-
The content defines various value types for metrics, including integers, floating points, and specific units of time, currency, and distance.
-
The
Enumstable lists these metric value types with brief descriptions for each, clarifying what each type represents. -
The
METRIC_TYPE_UNSPECIFIEDenum is a placeholder for an unspecified type. -
Several types like
TYPE_SECONDS,TYPE_CURRENCY, and distance units are classified as special floating-point types.
A metric's value type.
| Enums | |
|---|---|
METRIC_TYPE_UNSPECIFIED |
Unspecified type. |
TYPE_INTEGER |
Integer type. |
TYPE_FLOAT |
Floating point type. |
TYPE_SECONDS |
A duration of seconds; a special floating point type. |
TYPE_MILLISECONDS |
A duration in milliseconds; a special floating point type. |
TYPE_MINUTES |
A duration in minutes; a special floating point type. |
TYPE_HOURS |
A duration in hours; a special floating point type. |
TYPE_STANDARD |
A custom metric of standard type; a special floating point type. |
TYPE_CURRENCY |
An amount of money; a special floating point type. |
TYPE_FEET |
A length in feet; a special floating point type. |
TYPE_MILES |
A length in miles; a special floating point type. |
TYPE_METERS |
A length in meters; a special floating point type. |
TYPE_KILOMETERS |
A length in kilometers; a special floating point type. |