@@ -5,21 +5,23 @@ public class Member {
55 private final int member_id ;
66 private final String username ;
77 private final long join_date , last_activity_date ;
8- private final String gender , timezone ;
9- private final boolean banned , suspended , restricted , disabled ;
8+ private final boolean banned , suspended , restricted , disabled , premium , supreme , ultimate ;
9+ private final long discord_id ;
1010 private final int post_count , resource_count , purchase_count , feedback_positive , feedback_neutral , feedback_negative ;
1111
12- public Member (int member_id , String username , long join_date , long last_activity_date , String gender , String timezone , boolean banned , boolean suspended , boolean restricted , boolean disabled , int post_count , int resource_count , int purchase_count , int feedback_positive , int feedback_neutral , int feedback_negative ) {
12+ public Member (int member_id , String username , long join_date , long last_activity_date , boolean banned , boolean suspended , boolean restricted , boolean disabled , boolean premium , boolean supreme , boolean ultimate , long discord_id , int post_count , int resource_count , int purchase_count , int feedback_positive , int feedback_neutral , int feedback_negative ) {
1313 this .member_id = member_id ;
1414 this .username = username ;
1515 this .join_date = join_date ;
1616 this .last_activity_date = last_activity_date ;
17- this .gender = gender ;
18- this .timezone = timezone ;
1917 this .banned = banned ;
2018 this .suspended = suspended ;
2119 this .restricted = restricted ;
2220 this .disabled = disabled ;
21+ this .premium = premium ;
22+ this .supreme = supreme ;
23+ this .ultimate = ultimate ;
24+ this .discord_id = discord_id ;
2325 this .post_count = post_count ;
2426 this .resource_count = resource_count ;
2527 this .purchase_count = purchase_count ;
@@ -44,14 +46,6 @@ public long getLastActivityDate() {
4446 return last_activity_date ;
4547 }
4648
47- public String getGender () {
48- return gender ;
49- }
50-
51- public String getTimezone () {
52- return timezone ;
53- }
54-
5549 public boolean isBanned () {
5650 return banned ;
5751 }
@@ -68,6 +62,22 @@ public boolean isDisabled() {
6862 return disabled ;
6963 }
7064
65+ public boolean isPremium () {
66+ return premium ;
67+ }
68+
69+ public boolean isSupreme () {
70+ return supreme ;
71+ }
72+
73+ public boolean isUltimate () {
74+ return ultimate ;
75+ }
76+
77+ public long getDiscordId () {
78+ return discord_id ;
79+ }
80+
7181 public int getPostCount () {
7282 return post_count ;
7383 }
0 commit comments