UNPKG

@trophyso/node

Version:
18 lines (17 loc) 565 B
import type * as TrophyApi from "../index"; export interface PointsBoost { /** The ID of the points boost */ id: string; /** The name of the points boost */ name: string; /** The status of the points boost */ status: TrophyApi.PointsBoostStatus; /** The start date of the points boost */ start: string; /** The end date of the points boost */ end?: string; /** The multiplier of the points boost */ multiplier: number; /** The rounding method of the points boost */ rounding: TrophyApi.PointsBoostRounding; }