@trophyso/node
Version:
NodeJS SDK for the Trophy API
9 lines (8 loc) • 374 B
TypeScript
export interface UsersMetricEventSummaryResponseItem {
/** The date of the data point. For weekly or monthly aggregations, this is the first date of the period. */
date: string;
/** The user's total for this metric at the end of this date. */
total: number;
/** The change in the user's total for this metric during this period. */
change: number;
}