export interface WrappedMetricByAttributeValueValue {
    /** The name of the metric. */
    name?: string;
    /** The units of the metric. */
    units?: string;
    /** The current total for this attribute value. */
    currentTotal?: number;
    /** The change during the period for this attribute value. */
    changeThisPeriod?: number;
    /** The percentage change for this attribute value. */
    percentChange?: number;
    /** The user's percentile rank for this attribute value during the period. */
    percentileThisPeriod?: number;
}
