We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 005dacb commit b7239caCopy full SHA for b7239ca
src/common/ProfileDataResponse.ts
@@ -1,4 +1,5 @@
1
/* eslint-disable max-classes-per-file */
2
+import { ActivityTiers } from '~/constants/ActivityTiers';
3
4
export class ProfileDataResponseDto {
5
/** The ID of the member */
@@ -90,6 +91,12 @@ export class ProfileDataResponseDto {
90
91
92
/** Whether the member is a trusted host */
93
is_trusted_host: boolean;
94
+
95
+ /** Activity tier based on this month\s XP */
96
+ current_activity_tier: ActivityTiers;
97
98
+ /** Activity tier stored from last month\s XP. (This will be active till the member\s current month exceeds previous month\s XP) */
99
+ previous_activity_tier: ActivityTiers;
100
}
101
102
export class GetProfileDataDto {
0 commit comments