@trophyso/node
Version:
NodeJS SDK for the Trophy API
9 lines (8 loc) • 356 B
TypeScript
export interface UsersPointsEventSummaryResponseItem {
/** 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 points at the end of this date. */
total: number;
/** The change in the user's total points during this period. */
change: number;
}